-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.57 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
{
"author": {
"name": "netop://ウエハ",
"url": "https://webb.page"
},
"dependencies": {
"@webb/console": "^2020.4.15",
"get-own-enumerable-property-symbols": "^3.0.2",
"is-obj": "^2.0.0",
"is-regexp": "^2.1.0"
},
"description": "Stringify an Object/Array like JSON.stringify, but the way you want it",
"devDependencies": {
"@webb/config-nyc": "^2020.3.29",
"@webb/config-prettier": "^2020.4.16",
"@webb/test": "^2020.4.15",
"chronver": "^2020.3.9",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"updates": "^10.2.7"
},
"homepage": "https://github.com/NetOperatorWibby/stringify-object",
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run pretty && npm run increment && git add -A :/"
}
},
"license": "MIT",
"main": "dist/index.js",
"name": "@webb/stringify-object",
"prettier": "@webb/config-prettier",
"repository": {
"type": "git",
"url": "https://github.com/NetOperatorWibby/stringify-object"
},
"scripts": {
"build": "npm run cleanup && tsc",
"cleanup": "del './dist'",
"increment": "chronver --increment package",
"pretty": "prettier --write 'dist/**/*.js' 'dist/**/*.ts'",
"test": "run-s test:*",
"test:dependencies": "updates --update ./",
"test:typescript": "tsc",
"test:assert": "tsc && ts-node test/index.ts",
"test:coverage": "nyc npm run test:assert"
},
"types": "dist/index.d.ts",
"version": "2020.04.16"
}