-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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
50
{
"name": "react-list",
"version": "0.8.6",
"author": "Casey Foster <c@sey.me>",
"license": "MIT",
"main": "react-list.js",
"repository": {
"type": "git",
"url": "https://github.com/orgsync/react-list"
},
"scripts": {
"prebuild": "npm run test",
"build": "cogs",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"prop-types": "15"
},
"peerDependencies": {
"react": "0.14 || 15",
"react-dom": "0.14 || 15"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"cogs": "^3.1.5",
"cogs-transformer-babel": "^3.0.0",
"cogs-transformer-eslint": "^3.0.0",
"cogs-transformer-replace": "^3.0.0",
"eslint": "^3.4.0",
"eslint-plugin-react": "^6.2.0",
"jest": "^20.0.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1"
},
"babel": {
"env": {
"test": {
"presets": [
"es2015",
"react"
]
}
}
}
}