-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "immutable-object-update",
"version": "2.4.0",
"description": "Simple and fast immutable update utility",
"main": "index.js",
"scripts": {
"lint": "eslint ./src ./tests ./tools --ext .js --cache --ignore-pattern .gitignore",
"lint:fix": "eslint ./src ./tests ./tools --ext .js --cache --ignore-pattern .gitignore --fix",
"test": "mocha \"tests/**/*.spec.js\" --require ./tools/mocha.setup.js --recursive",
"cover": "nyc --reporter=html --reporter=text npm test",
"cover:check": "nyc check-coverage --lines 70 --functions 70 --branches 70 --statements 70 npm test",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t $CODECOV_TOKEN",
"precommit": "npm run lint",
"prepush": "npm run lint && npm run cover && npm run cover:check",
"prepare:readme": "bash ./tools/prepare-readme.sh",
"check:readme": "bash ./tools/check-readme.sh",
"build:docs": "gitbook build",
"publish:docs": "bash ./tools/publish-docs.sh . .temp",
"prepare:release": "standard-version -t ''",
"prepare:package": "node ./tools/clean.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andres-kovalev/immutable-object-update.git"
},
"keywords": [
"immutable",
"update"
],
"engines": {
"node": ">= 6.2.0"
},
"author": {
"name": "Andres Kovalev",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andres-kovalev/immutable-object-update/issues"
},
"homepage": "https://github.com/andres-kovalev/immutable-object-update#readme",
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.2.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"gitbook-cli": "^2.3.2",
"handlebars": "^4.4.5",
"husky": "^1.3.1",
"jsdoc-to-markdown": "^5.0.2",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"sinon": "^7.3.1",
"sinon-chai": "^3.3.0",
"standard-version": "^7.0.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"all": true
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run prepush"
}
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"section": "Improvements"
},
{
"type": "perf",
"section": "Improvements"
},
{
"type": "test",
"hidden": true
}
]
}
}