-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "guardy",
"version": "0.0.6",
"license": "MIT",
"description": "Simple and natural nested property accessor.",
"main": "dist/guardy.js",
"module": "dist/guardy.es.js",
"engines": {
"node": ">= 6.4.0"
},
"keywords": [
"guardy",
"getter",
"accessor",
"library"
],
"author": {
"name": "Piotr Szymura",
"email": "[email protected]",
"url": "https://deaddesk.top/"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test-watch": "jest --watch",
"build": "npm run build-umd && npm run build-iife",
"build-umd": "cross-env NODE_ENV=production rollup --config",
"build-iife": "cross-env NODE_ENV=production rollup --config rollup.config.iife.js",
"publish": "np"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"jest": "^23.5.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"np": "^3.0.4"
}
}