-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
67 lines (67 loc) · 1.56 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
66
67
{
"name": "san-update",
"version": "2.1.0",
"description": "Scripts to immutably update object or array",
"main": "index.min.js",
"module": "index.es.js",
"files": [
"index.js",
"index.js.map",
"index.min.js",
"index.min.js.map",
"index.es.js",
"index.es.js.map",
"fp.js",
"fp.js.map",
"fp.min.js",
"fp.min.js.map",
"fp.es.js",
"fp.es.js.map",
"src"
],
"scripts": {
"lint": "skr lint src",
"test": "skr test --coverage",
"report-cov": "cat coverage/lcov.info | coveralls",
"build": "node rollup.js",
"doc": "esdoc -c esdoc.json",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baidu/san-update.git"
},
"keywords": [
"update",
"immutable",
"utility"
],
"author": "otakustay",
"license": "MIT",
"bugs": {
"url": "https://github.com/baidu/san-update/issues"
},
"homepage": "https://github.com/baidu/san-update#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@reskript/cli": "^0.9.2",
"@reskript/cli-lint": "^0.9.12",
"@reskript/cli-test": "^0.9.6",
"@reskript/config-lint": "^0.12.6",
"@rollup/plugin-babel": "^5.2.1",
"coveralls": "^3.1.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"husky": "^4.3.0",
"rollup": "^2.32.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn build"
}
}
}