forked from jsdf/react-ratchet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.57 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
56
57
58
59
60
{
"name": "react-ratchet",
"description": "Ratchet, rebuilt for React",
"keywords": [
"react",
"ratchet",
"react-component",
"mobile",
"ui"
],
"author": "James Friend",
"version": "0.5.0",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/jsdf/react-ratchet/master/LICENSE"
}
],
"scripts": {
"test": "jest $JEST_ARGS",
"watch": "jest --watch",
"example": "babel example --out-dir example-build",
"prepublish": "babel src --out-dir lib --optional runtime --ignore __tests__"
},
"homepage": "https://github.com/jsdf/react-ratchet",
"bugs": "https://github.com/jsdf/react-ratchet/issues",
"repository": {
"type": "git",
"url": "git://github.com/jsdf/react-ratchet.git"
},
"dependencies": {
"babel-runtime": "^5.5.6",
"classnames": "^2.2.3",
"react": "^0.14.5",
"react-dom": "^0.14.5"
},
"devDependencies": {
"amp-has-class": "^1.0.3",
"babel": "^5.5.6",
"babel-jest": "^5.2.0",
"jest-cli": "^0.8.2",
"react-addons-test-utils": "^0.14.5"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/support/setupTestFramework.js",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [
"<rootDir>/src"
],
"unmockedModulePathPatterns": [
"<rootDir>/support",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/amp-has-class",
"<rootDir>/node_modules/classnames"
]
}
}