-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 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
{
"name": "react-hapi-jade-helper",
"version": "1.1.1",
"description": "",
"license": "MIT",
"main": "src/index.js",
"repository": "[email protected]:sstate/react-hapi-jade-helper.git",
"author": "rtorr",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"examples": "watchify ./examples/app.js -o ./dist/_bundle.js & npm run local_server",
"local_server": "echo Open examples on http:localhost:8000/examples && python -m SimpleHTTPServer",
"lint": "eslint ./src",
"test": "jest"
},
"browserify": {
"transform": [
[
"reactify",
"babelify",
{
"ext": ".js"
}
]
]
},
"jest": {
"scriptPreprocessor": "./util/jest_preprocessor.js",
"unmockedModulePathPatterns": [
"./node_modules/react"
],
"testFileExtensions": [
"js"
]
},
"peerDependencies": {
"react": "^0.13.3"
},
"devDependencies": {
"babel-core": "^4.0.0",
"babelify": "^5.0.4",
"browserify": "^9.0.3",
"eslint": "^0.16.1",
"jest-cli": "^0.2.2",
"reactify": "^1.0.0",
"watchify": "^2.3.0",
"react": "^0.12.2",
"react-tools": "^0.12.2"
},
"dependencies": {
"serialize-javascript": "^1.0.0"
}
}