-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"name": "tree-utils",
"version": "0.0.22",
"description": "",
"main": "es5/index.js",
"scripts": {
"test": "cross-env ENV=test mocha --require @babel/register ./test/unit",
"cover": "nyc --reporter=html --reporter=text npm run test",
"build:es5": "cross-env ENV=es5 babel src --out-dir es5",
"build": "npm run build:es5 && webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nsc-open/tree-utils.git"
},
"files": [
"src/**/*",
"es5/**/*",
"dist/**/*"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nsc-open/tree-utils/issues"
},
"keywords": [
"tree",
"walk",
"buildTree",
"utils",
"traverse"
],
"homepage": "https://github.com/nsc-open/tree-utils#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.0",
"@babel/preset-env": "^7.3.0",
"@babel/preset-stage-1": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"webpack": "^5.3.0",
"webpack-cli": "^4.1.0"
}
}