-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "js-to-file",
"version": "1.1.0",
"description": "Evaluate js and output result to file",
"keywords": [
"compile",
"file",
"output",
"run",
"typescript"
],
"license": "MIT",
"author": "Daniel Perez Alvarez <[email protected]>",
"files": [
"dist"
],
"bin": {
"js2file": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig-build.json && add-shebang",
"prepare": "npm run build",
"release": "standard-version",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm test && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"meow": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.1.1",
"@types/jest": "^23.3.9",
"@types/meow": "^5.0.0",
"add-shebang": "^0.1.0",
"execa": "^1.0.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"prettier": "^1.13.7",
"pretty-quick": "^1.8.0",
"standard-version": "^8.0.1",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
}
}