-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.46 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
66
67
68
69
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "ddd-base",
"version": "0.9.1",
"description": "DDD base class library for JavaScript application.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prettier": "prettier --write '{src,test}/**/*.ts'",
"test": "mocha 'test/*.ts'",
"build": "cross-env NODE_ENV=production tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf lib/"
},
"lint-staged": {
"*.{js,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"keywords": [
"ddd",
"util",
"base",
"class"
],
"repository": {
"type": "git",
"url": "https://github.com/almin/ddd-base.git"
},
"bugs": {
"url": "https://github.com/almin/ddd-base/issues"
},
"homepage": "https://github.com/almin/ddd-base",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.60",
"cross-env": "^6.0.3",
"husky": "^4.3.8",
"lerna": "^3.22.1",
"lint-staged": "^7.3.0",
"mocha": "^6.2.3",
"prettier": "1.14.3",
"rimraf": "^3.0.2",
"ts-node": "^7.0.1",
"typescript": "^3.1.3"
},
"dependencies": {
"map-like": "^2.0.0",
"shallow-equal-object": "^1.1.1"
},
"husky": {
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
}
}