-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 2.02 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
{
"name": "flexable",
"version": "0.2.2",
"description": "a flexible and lightweight React table control",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register --require ./test/testHelper.js --recursive",
"test:watch": "npm run test -- --watch",
"clean": "rimraf ./dist",
"prepublish": "nsp check && babel ./src --out-dir ./lib --source-maps --presets es2015,stage-0,react --plugins babel-plugin-add-module-exports",
"prepublish-es2015-modules": "babel ./src --out-dir ./lib --source-maps --presets es2015-webpack,stage-0,react --plugins babel-plugin-add-module-exports",
"build-dev": "nsp check && webpack --config webpack.config.js",
"build-prod": "nsp check && webpack --config webpack-production.config.js",
"build-docs": "webpack --config webpack-docs.config.js --display-error-details"
},
"author": "Jordan Pollard",
"license": "MIT",
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.7.4",
"babel-runtime": "^6.6.1",
"except": "^0.1.3",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"react": "^15.0.1",
"react-dom": "^15.0.2",
"webpack": "2.1.0-beta.27"
},
"peerDependencies": {
"except": "0.1.x",
"react": "15.x"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-webpack": "^6.4.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^4.18.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"node-sass": "^7.0.0",
"nsp": "^2.3.0",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.6"
}
}