-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "js-object-utilities",
"version": "2.2.0",
"description": "JavaScript utilities for nested objects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build:clean && npm run build",
"build": "tsc",
"build:clean": "rimraf dist",
"build:watch": "npm run build -- -w",
"test:nocoverage": "mocha",
"test": "nyc npm run test:nocoverage",
"test:debug": "npm run test:nocoverage -- --no-timeout --inspect=9229",
"test:debug:breakpoint": "npm run test:nocoverage -- --no-timeout --inspect-brk=9229",
"lint": "eslint . --ext .ts,.js --max-warnings 0",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rrainn/js-object-utilities.git"
},
"keywords": [
"object",
"utilities",
"nested",
"helper"
],
"author": "rrainn, Inc.",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/rrainn/js-object-utilities/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/rrainn/js-object-utilities#readme"
}