-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "@jorchgg/uop",
"version": "1.3.0",
"main": "dist/uop.cjs.js",
"module": "dist/uop.esm.js",
"browser": "dist/uop.umd.js",
"description": "uop is a tiny package that helps strict undefined checking on objects with nested properties",
"author": "Jorge Garcia Gonzalez <[email protected]> (https://github.com/jorchg)",
"repository": {
"type": "git",
"url": "git+https://github.com/jorchg/uop.git"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/jorchg/uop/issues"
},
"homepage": "https://github.com/jorchg/uop",
"dependencies": {
"@rollup/plugin-babel": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"coveralls": "^3.1.0",
"jest": "^26.1.0",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-uglify": "^6.0.4"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --coverage",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"pretest": "npm run build"
},
"files": [
"dist"
],
"directories": {
"test": "test"
}
}