-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.76 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.76 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "subdivide",
"description": "Split pane layout system for React. Each pane can be subdivided and any widget assigned to any pane allowing users define layout.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build:docs": "cross-env NODE_ENV=docs webpack --config webpack.config.docs.static.js",
"build:babel": "NODE_ENV=lib babel src --out-dir lib",
"build": "npm run clean && npm run build:babel",
"start": "node devServer.js",
"lint": "eslint src",
"commit": "git-cz",
"open-coverage": "open ./coverage/lcov-report/index.html",
"check-coverage": "nyc check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"report-coverage": "nyc report --reporter=text-lcov | codecov",
"test": "npm run test:mocha",
"test:watch": "npm run test:mocha:watch",
"test:mocha": "NODE_ENV=lib mocha --opts mocha.opts",
"test:mocha:watch": "npm run test:mocha -- --watch",
"test:ava": "NODE_ENV=test ava src/**/*.test.js --require babel-register --require ./src/scripts/null-compiler",
"test:ava:watch": "nodemon -w src --exec 'npm t -- --verbose'",
"test:cover": "nyc --reporter=lcov --reporter=text npm t",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/philholden/subdivide"
},
"keywords": [
"immutable",
"redux",
"split",
"panel",
"react",
"layout",
"panes",
"blender",
"devtools"
],
"author": "Phil Holden (http://github.com/philholden)",
"license": "MIT",
"bugs": {
"url": "https://github.com/philholden/subdivide/issues"
},
"homepage": "https://github.com/philholden/subdivide",
"devDependencies": {
"ava": "^0.9.1",
"babel-cli": "^6.4.0",
"babel-core": "^6.3.15",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-webpack-loaders": "^0.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.0",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.3.13",
"clean-webpack-plugin": "^0.1.6",
"codecov.io": "0.1.6",
"commitizen": "^2.5.0",
"component-playground": "^1.0.5",
"compression": "^1.6.0",
"cross-env": "^1.0.6",
"cz-conventional-changelog": "^1.1.5",
"ecology": "^1.0.4",
"eslint": "^1.10.3",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"eventsource-polyfill": "^0.9.6",
"expect": "^1.13.4",
"expect-jsx": "^2.2.2",
"express": "^4.13.3",
"file-loader": "^0.8.5",
"formidable-landers": "0.0.5",
"ghooks": "0.3.2",
"is_js": "^0.7.6",
"nodemon": "^1.8.1",
"nyc": "^5.3.0",
"react-addons-test-utils": "^0.14.6",
"react-docgen": "^2.6.1",
"react-router": "^2.0.0-rc5",
"rimraf": "^2.4.3",
"semantic-release": "^4.3.5",
"socket.io": "^1.4.0",
"static-site-generator-webpack-plugin": "^2.0.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0",
"webpack-stats-plugin": "^0.1.1",
"babel-preset-stage-1": "^6.3.13",
"color-array": "0.0.5",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"redux": "^3.0.0",
"react-redux": "^3.0.1",
"mocha": "^2.3.3"
},
"config": {
"ghooks": {
"pre-commit": "npm run test && npm run check-coverage"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"immutable": "^3.7.4"
},
"release": {
"debug": false
}
}