-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.96 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
63
64
65
66
67
68
69
70
{
"name": "treeful",
"version": "2.0.1",
"description": "Let's not get overwhelmed. It's just a state manager.",
"author": "Justin Jung <[email protected]>",
"contributors": [
"Logan Bittner <[email protected]>"
],
"license": "MIT",
"main": "lib/treeful.js",
"scripts": {
"start": "node ./example/server.js",
"lint": "eslint ./src ./example ./test",
"test": "mocha --compilers js:babel-core/register",
"cover": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"compile": "babel -d lib/ src/",
"prepublish": "npm run lint && npm run test && npm run compile"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.3.15",
"babel-eslint": "^6.0.4",
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"coveralls": "^2.11.9",
"css-loader": "^0.23.1",
"eslint": "^3.0.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^5.1.1",
"expect": "^1.20.1",
"express": "^4.13.3",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"node-sass": "^3.7.0",
"openurl": "^1.1.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"rimraf": "^2.5.2",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"keywords": [
"state",
"store",
"data",
"manager",
"react",
"redux",
"flux",
"simple",
"easy",
"tree"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jsful/treeful.git"
},
"homepage": "https://github.com/jsful/treeful",
"bugs": {
"url": "https://github.com/jsful/treeful/issues"
}
}