-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 KB
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
{
"name": "@entipic/domain",
"version": "1.2.9",
"description": "Entipic domain",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --verbose lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run tsc && npm run clean-test-code",
"clean": "rimraf ./lib",
"clean-test-code": "rimraf ./lib/**/*.test.js && rimraf ./lib/**/*.test.d.ts"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/entipic/domain.git"
},
"keywords": [
"entipic",
"domain"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/entipic/domain/issues"
},
"homepage": "https://github.com/entipic/domain",
"devDependencies": {
"@types/ms": "^0.7.30",
"@types/node": "^18.11.18",
"@types/shortid": "^0.0.29",
"debug": "^4.1.0",
"rimraf": "^2.6.2",
"typescript": "^4.6.3"
},
"dependencies": {
"atonic": "^1.0.4",
"ava": "~0.25.x",
"joi": "^17.6.0",
"ms": "^2.1.1",
"shortid": "^2.2.14"
}
}