-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 795 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 795 Bytes
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
{
"name": "react-anything",
"version": "0.1.5",
"description": "Module to create non-DOM implementations of React",
"repository": {
"type": "git",
"url": "https://github.com/evilfer/react-anything.git"
},
"bugs": {
"url": "https://github.com/evilfer/react-anything.git/issues"
},
"keywords": [
"React"
],
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/helpers/",
"/.idea/"
]
},
"author": "Eloy Villasclaras <eloy.villasclaras@gmail.com>",
"license": "BSD",
"devDependencies": {
"jest-cli": "0.10.0"
},
"dependencies": {
"invariant": "^2.2.1",
"object-assign": "^4.0.1",
"react": "15.0.0",
"warning": "^2.1.0"
}
}