-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (40 loc) · 1.02 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
49
{
"name": "react_explicit_prop_declaration",
"description": "",
"version": "0.1.0",
"author": "John Postlethwait <john.postlethwait@gmail.com>",
"website": "https://github.com/JohnPostlethwait/react_explicit_prop_declaration",
"contributors": [],
"keywords": ["react", "mixin", "proptypes", "properties", "explicit"],
"repository": {
"type": "git",
"url": "git://github.com/JohnPostlethwait/react_explicit_prop_declaration.git"
},
"main": "./index.js",
"engines": {
"node": ">= v0.10.26"
},
"licenses": [
{
"name": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"dependencies": {
"thicket": "1.2.1"
},
"devDependencies": {
"jest-cli": "0.4.0",
"react": "0.13.1",
"react-tools": "0.13.1"
},
"scripts": {
"test": "./node_modules/.bin/jest"
},
"jest": {
"rootDir": "",
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"testDirectoryName": "tests",
"unmockedModulePathPatterns": ["node_modules"]
}
}