-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "insolvency-common",
"version": "0.0.1",
"description": "Axcess common modules",
"main": "build/index.umd.js",
"module": "build/index.esm.js",
"scripts": {
"test": "npm run build && jest",
"build": "./node_modules/.bin/rollup -c rollup.config.js"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"build/index.umd.js"
]
},
"testEnvironment": "node",
"repository": {
"type": "git",
"url": "ssh://git-codecommit.ap-northeast-1.amazonaws.com/v1/repos/insolvency-common"
},
"keywords": [
"insolvency"
],
"author": "Matiboy <[email protected]>",
"license": "ISC",
"types": "build/index.d.ts",
"dependencies": {
"jest": "^22.3.0",
"lodash": "^4.17.5",
"rollup": "^0.55.5"
},
"devDependencies": {
"husky": "^0.15.0-rc.8",
"rollup-plugin-copy": "^0.2.3"
},
"husky": {
"hooks": {
"pre-push": "./node_modules/.bin/rollup -c rollup.config.js && npm test",
"postversion": "git push && git push --tags"
}
}
}