-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "clean-react-props",
"version": "0.4.0",
"license": "MIT",
"description": "Utility function for passing clean props to DOM elements in React.",
"repository": "ryanhefner/clean-react-props",
"author": "Ryan Hefner <hi@ryanhefner.com> (https://www.ryanhefner.com)",
"files": [
"constants.js",
"index.js",
"es",
"src",
"umd"
],
"directories": {
"lib": "/src"
},
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"clean": "rm -f index.js && rm -f constants.js && rm -fr es && rm -fr umd",
"prebuild": "npm run clean",
"build": "node ./tools/build.js",
"watch": "babel ./src -d . --ignore __tests__,**/*.test.js --watch",
"prepare": "npm run build",
"prepublishOnly": "node ./tools/build.js",
"push-release": "git push origin master && git push --tags",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"babel-plugin-dev-expression": "^0.2.2",
"braces": "^3.0.2",
"coveralls": "^3.0.9",
"greenkeeper-lockfile": "^1.15.1",
"gzip-size": "^5.1.1",
"jest": "^25.1.0",
"pretty-bytes": "^5.3.0",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4"
},
"jest": {
"collectCoverage": true,
"testURL": "http://localhost"
},
"keywords": [
"react",
"utility",
"clean",
"props",
"attributes",
"events"
]
}