-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
88 lines (88 loc) · 2.54 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
{
"name": "react-component-boilerplate",
"description": "Boilerplate for React.js components",
"author": "Juho Vepsalainen",
"user": "survivejs",
"version": "6.1.2",
"scripts": {
"start": "catalog start docs",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:lint": "eslint . --ignore-path .gitignore",
"gh-pages": "catalog build docs",
"gh-pages:deploy": "gh-pages -d docs/build",
"dist:es6": "del-cli ./dist-es6 && cross-env BABEL_ENV=es6 babel ./src --out-dir ./dist-es6",
"dist:modules": "del-cli ./dist-modules && cross-env BABEL_ENV=modules babel ./src --out-dir ./dist-modules",
"preversion": "npm run test",
"prepublishOnly": "npm run dist:es6 && npm run dist:modules",
"postpublish": "npm run gh-pages && npm run gh-pages:deploy",
"postinstall": "node lib/post_install.js"
},
"main": "dist-modules",
"module": "dist-es6",
"jsnext:main": "dist-es6",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"catalog": "^3.4.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"del-cli": "^1.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.1.0",
"git-prepush-hook": "^1.0.2",
"jest": "^22.4.2",
"purecss": "^1.0.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-github-corner": "^2.1.0",
"rimraf": "^2.6.2",
"sync-exec": "^0.6.2",
"webpack": "^3.10.0"
},
"peerDependencies": {
"react": ">= 0.11.2 < 16.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/survivejs/react-component-boilerplate.git"
},
"homepage": "https://survivejs.github.io/react-component-boilerplate/",
"bugs": {
"url": "https://github.com/survivejs/react-component-boilerplate/issues"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"packages"
]
},
"keywords": [
"react",
"reactjs",
"boilerplate"
],
"license": "MIT",
"pre-push": [
"test"
]
}