-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.17 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
{
"name": "react-app-tools",
"version": "1.0.0",
"description": "An application toolkit for React",
"main": "js/index.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://pthorn@github.com/pthorn/react-app-tools.git"
},
"author": {
"email": "p.thorn.ru@gmail.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/pthorn/react-app-tools/issues"
},
"homepage": "https://github.com/pthorn/react-app-tools#readme",
"dependencies": {
"babel-polyfill": "^6.5.0",
"classnames": "^2.2.3",
"eventemitter3": "^2.0.1",
"jquery": "^2.2.0",
"lodash": "^4.5.0",
"moment": "^2.11.2",
"react": "^0.13.3",
"react-dnd": "^1.1.8",
"react-router": "^0.13.3",
"rsvp": ">=3.0.18",
"string": "^3.3.1"
},
"devDependencies": {
"babel-jest": "*",
"jest-cli": "*"
},
"scripts": {
"test": "BABEL_JEST_STAGE=0 jest"
},
"jest": {
"testDirectoryName": "tests",
"unmockedModulePathPatterns": ["<rootDir>/node_modules/react"],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"moduleFileExtensions": ["js", "json", "jsx"]
}
}