-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "sxs",
"version": "1.1.0",
"description": "An CLI app for S-Expressing",
"main": "./lib/index.js",
"bin": {
"sxs": "bin/sxs"
},
"scripts": {
"start": "npm run build",
"build": "npm run clean:some && tsc -p .",
"test": "npm run clean:test && jest --verbose --runInBand",
"clean:some": "rm -rf ./lib",
"clean:all": "rm -rf ./node_modules ./package-lock.json ./lib",
"clean:test": "jest --clearCache",
"publish-package": "npm run build && npm publish",
"lint": "tslint \"./src/**/*.{ts}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"keywords": ["s-expression", "CLI"],
"author": "Cong Dao - [email protected]",
"license": "MIT",
"repository": "https://github.com/congdv/sxs",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"husky": "^4.3.7",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/commander": "^2.12.2",
"commander": "^6.2.1"
}
}