forked from nikgraf/belle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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": "belle",
"version": "1.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"
],
"peerDependencies": {
"react": ">=0.13.0"
},
"scripts": {
"start": "babel --watch --source-maps-inline --optional='es7.classProperties' --out-dir='lib' src",
"build": "babel --out-dir='lib' --optional='es7.classProperties' src",
"prepublish": "npm run build",
"postpublish": "./scripts/publish_gh_pages.sh",
"postinstall": "rm -rf node_modules/react/",
"test": "cd tests && npm install && ln -snf ../lib lib && cd .. && jest tests/"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-jest": "^5.3.0",
"babel-eslint": "^3.1.20",
"eslint": "^0.24.0",
"eslint-plugin-react": "^2.6.4",
"jest-cli": "^0.4.15",
"react": ">=0.13.3"
},
"jest": {
"unmockedModulePathPatterns": [
"react",
"underscore"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": ["jsx", "js"],
"moduleFileExtensions": ["js", "json", "jsx"]
},
"license": "MIT"
}