-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "clean-set",
"version": "1.1.2",
"description": "A fast deep assignment alternative to the object spread operator and Object.assign",
"umd:main": "dist/clean-set.min.js",
"module": "dist/clean-set.es.js",
"main": "dist/clean-set.js",
"source": "lib/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "microbundle",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"tap": "tape -r esm tests/**/*.js | tap-difflet",
"test": "nyc --reporter=text npm run tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fwilkerson/clean-set.git"
},
"keywords": [],
"author": "Frank A. Wilkerson",
"license": "MIT",
"bugs": {
"url": "https://github.com/fwilkerson/clean-set/issues"
},
"homepage": "https://github.com/fwilkerson/clean-set#readme",
"devDependencies": {
"codecov": "^3.2.0",
"esm": "^3.2.18",
"microbundle": "^0.12.0",
"nyc": "^15.0.1",
"prettier": "^1.16.4",
"tap-difflet": "^0.7.1",
"tape": "^4.10.1"
}
}