-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "react-element-children",
"version": "1.0.0",
"description": "Utilities for iterating children elements",
"main": "index.js",
"scripts": {
"test": "eslint src && jest",
"tdd": "jest --watch=skip",
"build": "rm -rf lib/* && babel src --out-dir lib",
"release": "release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-bootstrap/react-child-elements.git"
},
"author": "react-bootstrap contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-bootstrap/react-child-elements/issues"
},
"homepage": "https://github.com/react-bootstrap/react-child-elements#readme",
"jest": {
"automock": false,
"testRegex": "tests/.*\\.js$"
},
"release-script": {
"altPkgRootFolder": "lib"
},
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-jest": "^14.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"jest-cli": "^14.1.0",
"react": "^15.3.0",
"release-script": "^1.0.2"
}
}