forked from WebReflection/augmentor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"name": "augmentor",
"version": "2.2.0",
"description": "React like hooks for the masses",
"module": "esm/index.js",
"main": "cjs/index.js",
"unpkg": "min.js",
"scripts": {
"build": "npm run cjs && rollup --config rollup.config.js && npm run min && npm run test && npm run size",
"cjs": "ascjs esm cjs",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"min": "echo '/*! (c) Andrea Giammarchi - ISC */' > min.js && uglifyjs index.js -c -m >> min.js",
"size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c;cat min.js | brotli | wc -c",
"test": "nyc node test/index.js"
},
"keywords": [
"hooks",
"library"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"greenkeeper": {
"ignore": [
"rollup",
"rollup-plugin-babel",
"rollup-plugin-node-resolve"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"ascjs": "^3.1.2",
"coveralls": "^3.0.11",
"nyc": "^15.0.1",
"rollup": "^2.6.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"uglify-js": "^3.8.1"
},
"dependencies": {
"reraf": "^1.1.1",
"umap": "^1.0.2"
}
}