-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.49 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
{
"name": "tree-node-utils",
"version": "3.0.0",
"description": "A set of functions for accessing, searching, filtering data nodes in a tree data structure.",
"main": "lib/tree-node-utils.js",
"scripts": {
"build": "webpack --env dev && webpack --env build && npm run test",
"build:demo": "webpack --env dev && webpack --config webpack.config.demo.js",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --require babel-core/register --colors ./src/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/linsight/tree-node-utils"
},
"keywords": [
"react",
"provider",
"state"
],
"author": "David Lin",
"license": "MIT",
"bugs": {
"url": "https://github.com/linsight/tree-node-utils/issues"
},
"homepage": "https://linsight.github.io/tree-node-utils/",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-loader": "^1.9.0",
"html-webpack-plugin": "^3.0.7",
"jsdom": "^11.6.2",
"mocha": "^4.0.1",
"webpack": "^3.10.0",
"yargs": "^11.0.0"
},
"dependencies": {}
}