forked from fernandopasik/react-children-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.52 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-children-utilities",
"version": "0.1.6",
"description": "Extended utils for React.Children opaque data structure",
"keywords": [
"react",
"reactjs",
"children",
"utils",
"utilities"
],
"homepage": "https://github.com/fernandopasik/react-children-utilities",
"bugs": "https://github.com/fernandopasik/react-children-utilities/issues",
"license": "MIT",
"author": "Fernando Pasik <[email protected]> (http://fernandopasik.com)",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/fernandopasik/react-children-utilities.git"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"coverage": "rm -rf coverage .nyc_output && nyc mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"check": "npm run -s lint && npm run -s coverage",
"dist": "rm -rf dist && mkdir dist && babel src/index.js --minified --source-maps --no-comments --out-file dist/index.js",
"build": "npm run -s check && npm run -s dist",
"travis": "npm run -s build && npm run -s coveralls",
"prepublishOnly": "npm run -s dist",
"preversion": "npm run -s check",
"commitmsg": "validate-commit-msg",
"precommit": "npm run -s lint",
"prepush": "npm run -s check",
"preparecommitmsg": "prepare-commit-msg-angular $2 $3"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"all": true,
"require": [
"babel-register"
],
"include": [
"src/"
],
"exclude": [
"dist/**",
"node_modules/**",
"docs/**",
"test/**"
],
"sourceMap": false,
"instrument": false,
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100,
"statements": 100
},
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"coveralls": "^2.11.15",
"dirty-chai": "^1.2.2",
"enzyme": "^2.6.0",
"eslint-config-fernandopasik": "^0.5.1",
"husky": "^0.11.9",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"prepare-commit-msg-angular": "^0.2.0",
"react-addons-test-utils": "^15.0.0",
"validate-commit-msg": "^2.8.2"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
}
}