-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "react-bootstrap-extended",
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"repository": {
"type": "git",
"url": "https://github.com/rbalicki2/react-bootstrap-extended"
},
"version": "0.0.7",
"main": "dist/react-bootstrap-extended.js",
"dependencies": {
"bootstrap-class-props": "^0.0.4",
"react": "^15.5.4",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jasmine": "^2.7.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^20.0.4",
"react-test-renderer": "^15.6.1",
"webpack": "^2.3.3"
},
"scripts": {
"test": "jest",
"lint": "eslint './**/*.js?(x)'",
"build": "npm run clean && npm run lint && npm run test && npm run compile",
"clean": "rm -rf ./dist",
"compile": "webpack"
},
"jest": {
"testPathIgnorePatterns": [
".eslintrc.js"
]
}
}