-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "object-path-set",
"version": "1.0.2",
"description": "set values in javascript objects by specifying a path",
"main": "index.js",
"scripts": {
"build": "npm-run-all changelog format lint cover",
"changelog": "conventional-changelog -i CHANGELOG.md -s -u -r 0",
"clean": "rimraf coverage/",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"cover": "npm test -- --coverage",
"coveralls": "cat coverage/lcov.info | coveralls --verbose",
"format": "prettier --single-quote --trailing-comma=none --write '*{.js,.md}' '.*.js'",
"lint": "eslint *.js",
"prepublish": "npm run build",
"test": "jest test.js",
"watch": "npm-run-all clean --parallel watch:test watch:lint",
"watch:lint": "watch 'npm run lint' .",
"watch:test": "npm run test -- --watch"
},
"author": "skratchdot",
"license": "MIT",
"bugs": {
"url": "https://github.com/skratchdot/object-path-set/issues"
},
"homepage": "https://github.com/skratchdot/object-path-set",
"repository": {
"type": "git",
"url": "https://github.com/skratchdot/object-path-set"
},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"conventional-changelog-cli": "^2.2.2",
"coveralls": "^3.1.1",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2"
},
"runkitExampleFilename": ".runkit.example.js",
"jest": {
"verbose": true,
"collectCoverageFrom": [
"index.js"
],
"coverageReporters": [
"text",
"html",
"lcovonly"
]
},
"keywords": [
"object",
"path",
"helper",
"deep"
]
}