-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "@shovelandsandbox/humanid",
"author": {
"name": "Shovel & Sandbox",
"url": "https://github.com/shovelandsandbox"
},
"version": "0.2.2",
"description": "Memorable and reasonably collision-resistant identifiers",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/shovelandsandbox/humanid",
"license": "MIT",
"keywords": [],
"private": false,
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write --config ./.prettierrc",
"fix:tslint": "tslint --fix --project .",
"test": "run-s build test:*",
"test:unit": "ava",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --verbose --watch\"",
"version": "standard-version",
"reset": "git clean -dfx && git reset --hard && npm i",
"clean": "rm -rf build",
"prepare-release": "run-s reset test cov:check doc:html version doc:publish"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/node": "12.12.24",
"ava": "2.2.0",
"cz-conventional-changelog": "^2.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"ava": {
"failFast": true,
"files": [
"build/main/**/*.spec.js"
],
"sources": [
"build/main/**/*.js"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
}
}