-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
55
56
57
58
59
60
61
62
{
"name": "tree-to-list",
"version": "3.0.2",
"description": "Flatten tree to list",
"main": "dist/treeToList.js",
"module": "dist/treeToList.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build",
"build": "rollup -c",
"test": "npm run build && jest",
"lint": "eslint --fix \"**/*.{ts,js}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cong-min/tree-to-list.git"
},
"author": "Cong Min",
"license": "MIT",
"bugs": {
"url": "https://github.com/cong-min/tree-to-list/issues"
},
"files": [
"src",
"dist"
],
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-object-assign": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-jest": "^25.3.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.3",
"lodash": "^4.17.21",
"rollup": "^2.61.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"jest": {
"preset": "ts-jest"
}
}