-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@heppokofrontend/flat-deep",
"description": "Completely flattens the iterable object.",
"version": "0.2.4",
"author": "heppokofrontend",
"bugs": {
"url": "https://github.com/heppokofrontend/flat-deep/issues"
},
"dependencies": {
"fast-safe-stringify": "^2.0.8"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.17.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-loader": "^8.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"directories": {
"test": "test"
},
"engines": {
"node": "^14.17.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/heppokofrontend/flat-deep#readme",
"keywords": [
"array",
"deep",
"deep-flat",
"flat",
"flat-deep",
"heppokofrontend",
"iterable"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/heppokofrontend/flat-deep.git"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"prestart": "git config commit.template .gitmessage",
"start": "tsc -w",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage"
}
}