-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
86 lines (86 loc) · 2.35 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
{
"name": "belle",
"version": "4.0.0",
"description": "Configurable React Components with great UX",
"author": {
"name": "Nik Graf",
"email": "[email protected]",
"url": "http://www.nikgraf.com"
},
"repository": {
"type": "git",
"url": "git://github.com/nikgraf/belle.git"
},
"main": "lib/index.js",
"keywords": [
"browser",
"react",
"ux",
"components",
"widget",
"javascript",
"react-component"
],
"peerDependencies": {
"react": ">=15.4.0",
"react-dom": ">=15.4.0",
"prop-types": ">=15.4.0"
},
"scripts": {
"build": "BABEL_ENV=production node_modules/.bin/babel --out-dir='lib' --ignore='__tests__/*' src",
"prepublish": "npm run build",
"postpublish": "./scripts/publish_gh_pages.sh",
"test": "BABEL_ENV=test BABEL_JEST_STAGE=0 jest src/",
"test:watch": "npm run test -- --watch",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint ./",
"lint:eslint:fix": "eslint --fix ./",
"alex": "alex README.md"
},
"devDependencies": {
"alex": "^2.0.1",
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.0",
"babel-jest": "^9.0.3",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.5.3",
"eslint-config-airbnb": "6.2.0",
"eslint-plugin-react": "^4.2.3",
"jest-cli": "^15.1.1",
"prop-types": "^15.5.10",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-test-renderer": "^15.6.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.2",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"jest": {
"testRunner": "jasmine2",
"automock": true,
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/prop-types",
"../utils/helpers",
"../utils/union-class-names",
"../utils/is-component-of-type"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest"
},
"license": "MIT",
"dependencies": {
"exenv": "^1.2.0"
}
}