-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.22 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
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
{
"name": "kniferoll",
"version": "0.3.1",
"author": "Matt Anglin",
"description": "React component library",
"main": "index.js",
"scripts": {
"clean": "babel-node ./scripts/clean.js",
"dev": "webpack-dev-server --quiet --config=./webpack/dev.config.js --inline --hot --content-base build/ --port 1338",
"build": "NODE_ENV=production babel src/ --out-dir ./ --copy-files",
"lint": "eslint -c .eslintrc _templates bin src webpack",
"prepublish": "npm run lint && npm run clean && npm run build",
"publish": "npm run clean",
"version": "npm run styleguide:build && git add -A docs",
"start": "styleguidist server",
"styleguide:build": "styleguidist build",
"test": "nyc mocha 'src/**/*.test.js'",
"test:watch": "nyc mocha 'src/**/*-test.js' --watch --compilers testIgnore.js",
"test:coverage": "nyc report --reporter=html && open ./coverage/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/mattanglin/kniferoll"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"file-loader": "^0.10.0",
"glamor": "^2.20.40",
"glamorous": "^4.9.2",
"object-resolve-path": "^1.1.1",
"polished": "^1.3.0",
"react": "^15.4.1",
"react-dom": "^15.6.1",
"react-transition-group": "^2.0.2",
"recompose": "^0.23.5",
"shortid": "^2.2.8",
"url-loader": "^0.5.7"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.5.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-display-name": "^6.3.13",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-plugin-typecheck": "^3.6.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.3.13",
"babel-runtime": "^6.3.19",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"clean-webpack-plugin": "^0.1.6",
"css-loader": "^0.28.4",
"dirty-chai": "^2.0.0",
"enzyme": "2.8.0",
"eslint": "3.11.1",
"eslint-config-airbnb": "13.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"express": "^4.15.3",
"mocha": "^3.4.2",
"node-libs-browser": "^2.0.0",
"nyc": "^11.0.3",
"prop-types": "^15.5.10",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.4.1",
"react-redux": "^5.0.5",
"react-styleguidist": "^5.4.8",
"redux": "^3.7.1",
"redux-form": "^6.8.0",
"rimraf": "^2.6.1",
"sinon": "^2.3.6",
"sinon-chai": "^2.11.0",
"strip-loader": "^0.1.0",
"style-loader": "^0.18.2",
"webpack": "1.9.11",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "^1.16.3",
"webpack-hot-middleware": "^2.5.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*-test.js"
],
"require": [
"babel-register",
"./testLoader.js"
],
"sourceMap": true,
"instrument": true
}
}