-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.29 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
{
"author": {
"name": "netop://ウエハ",
"url": "https://webb.page"
},
"description": "Make sure your Object keys are in alphabetical order",
"devDependencies": {
"@webb/config-prettier": "^2020.4.16",
"@webb/test": "^2020.4.15",
"chronver": "^2020.3.9",
"del-cli": "^3.0.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/order-object",
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run test:assert && npm run pretty && npm run increment && git add -A :/"
}
},
"license": "MIT",
"main": "dist/index.js",
"name": "@webb/order-object",
"prettier": "@webb/config-prettier",
"repository": {
"type": "git",
"url": "https://github.com/NetOperatorWibby/order-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": "ts-node test/index.ts"
},
"types": "dist/index.d.ts",
"version": "2020.04.16"
}