-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 855 Bytes
/
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
{
"name": "slash-cli",
"version": "0.1.1",
"description": "A CLI for slash",
"author": "hasparus",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"bin": {
"slash": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"np": "np",
"build": "tsc",
"jest": "jest",
"test-package": "node test-package",
"test": "yarn build && yarn jest --runInBand && yarn test-package",
"prepublish": "yarn test"
},
"dependencies": {
"slash": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/slash": "^2.0.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"np": "^4.0.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3"
},
"husky": {
"hooks": {
"pre-push": "yarn test"
}
}
}