-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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": "FlashpointWeather",
"version": "1.0.0",
"description": "== README",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": "4.1.1",
"npm": "2.1.x"
},
"scripts": {
"test": "jest",
"postinstall": "./node_modules/.bin/webpack"
},
"jest": {
"scriptPreprocessor": "<rootDir>/jest/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.5.2",
"babel-jest": "5.3.0",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"flux": "^2.1.1",
"jquery": "^2.2.1",
"react": "^0.14.7",
"react-addons-linked-state-mixin": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"webpack": "^1.12.14"
},
"devDependencies": {
"babel-polyfill": "^6.7.2",
"jest-cli": "^0.9.2",
"jest-webpack-alias": "^2.2.0"
}
}