forked from therockstorm/skripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.09 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "skripts",
"version": "0.0.13",
"description": "CLI for project scripts and configuration.",
"homepage": "https://github.com/therockstorm/skripts#readme",
"bugs": {
"url": "https://github.com/therockstorm/skripts/issues"
},
"license": "MIT",
"author": {
"name": "Rocky Warren",
"url": "https://www.rockywarren.com"
},
"files": [
"dist",
"base-tsconfig.json",
"config.js",
"tslint.js"
],
"keywords": [
"cli",
"configuration",
"kcd-scripts",
"react-scripts",
"serverless",
"scripts",
"skripts",
"toolbox",
"typescript"
],
"main": "dist/index.js",
"bin": {
"skripts": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/therockstorm/skripts.git"
},
"scripts": {
"build": "tsc && cp -r src/config dist/config",
"clean": "npm run skripts -- clean dist --verbose",
"format": "npm run skripts -- prettier --verbose",
"lint": "npm run skripts -- tslint --verbose",
"push": "npm run clean && npm run build && npm publish",
"skripts": "npm run build && node dist",
"test": "npm run skripts -- jest --verbose",
"help": "npm run build && node dist --help",
"watch": "npm run test -- --watch"
},
"dependencies": {
"@therockstorm/utils": "^3.0.7",
"@types/aws-lambda": "^8.10.24",
"@types/jest": "^24.0.12",
"@types/node": "^11.13.8",
"@types/read-pkg-up": "^3.0.1",
"@types/which": "^1.3.1",
"acorn": "^6.1.1",
"commander": "^2.20.0",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"read-pkg-up": "^5.0.0",
"serverless": "^1.41.1",
"serverless-webpack": "^5.2.0",
"source-map-support": "^0.5.12",
"ts-jest": "^24.0.2",
"ts-loader": "^5.4.4",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-node-externals": "^1.7.2",
"which": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run skripts -- pre-commit --verbose"
}
},
"devDependencies": {
"husky": "^2.1.0"
}
}