-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "flattree",
"version": "1.0.0",
"description": "Convert hierarchical tree structure to flat structure.",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run eslint && npm test && npm run build",
"build": "babel --out-dir ./lib ./src",
"clean": "del .nyc_output coverage lib package-lock.json yarn.lock",
"eslint": "eslint ./src",
"coverage": "nyc --reporter=lcov --reporter=text yarn test",
"test": "tap test/*.js --no-timeout --node-arg=--require --node-arg=@babel/register --node-arg=--require --node-arg=core-js/stable --node-arg=--require --node-arg=regenerator-runtime/runtime"
},
"author": "Cheton Wu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cheton/flattree.git"
},
"keywords": [
"flat",
"flatten",
"large",
"scroll",
"tree"
],
"devDependencies": {
"@babel/cli": "~7.16.0",
"@babel/core": "~7.16.0",
"@babel/preset-env": "~7.16.4",
"@babel/register": "~7.16.0",
"@trendmicro/babel-config": "~1.0.2",
"babel-eslint": "~10.1.0",
"core-js": "^3.19.1",
"del-cli": "^4.0.1",
"eslint": "^7.13.0",
"eslint-config-trendmicro": "^2.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"lodash": "^4.0.0",
"tap": "^15.0.10"
},
"nyc": {
"exclude": [
"test/index.js"
]
},
"tap": {
"check-coverage": false
}
}