-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "omai",
"version": "1.0.0",
"description": "Flat-swaggish website for me",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack -d --display-error-details",
"watch": "webpack -w -d --display-error-details",
"prod": "webpack -p -d --display-error-details"
},
"repository": {
"type": "git",
"url": "https://github.com/srph/omai.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/srph/omai/issues"
},
"homepage": "https://github.com/srph/omai",
"dependencies": {
"es6-promise": "^2.0.1",
"radium": "^0.9.1",
"react": "^0.12.2"
},
"devDependencies": {
"babel": "^4.6.1",
"babel-core": "^4.6.6",
"babel-loader": "^4.0.0",
"jest": "^0.1.37",
"webpack": "^1.7.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/jest/preprocessor",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6",
"jsx"
],
"unmockedModulePathPatterns": ["<rootDir>/node_modules/react"]
}
}