-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.37 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
84
85
86
87
{
"name": "design-first",
"version": "0.1.3",
"description": "",
"main": "lib/index.js",
"preferGlobal": "true",
"bin": {
"design-first": "lib/cli.js"
},
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register test/**/*.ts",
"pretty": "prettier --write \"src/**/*.ts\"",
"lint": "tslint --fix -c tslint.json 'src/**/*.ts'",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"tar": "rm ./src/files/base.tar.gz & (cd base && tar -zcvf ../src/files/base.tar.gz ./) && rm ./lib/files/base.tar.gz && cp ./src/files/base.tar.gz ./lib/files/base.tar.gz",
"precommit": "lint-staged",
"publish": "npm publish"
},
"lint-staged": {
"src/**/*.ts": [
"npm run pretty",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/adam-hanna/design-first.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"api",
"rest",
"typescript"
],
"author": "Adam Hanna <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adam-hanna/design-first/issues"
},
"homepage": "https://github.com/adam-hanna/design-first#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chalk": "^2.2.0",
"@types/express": "^4.17.0",
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.1",
"@types/node-emoji": "^1.8.1",
"@types/tar": "^4.0.3",
"@types/uuid": "^3.4.5",
"chai": "^4.2.0",
"husky": "^3.0.0",
"lint-staged": "^9.1.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/yargs": "^13.0.2",
"chalk": "^2.4.2",
"class-validator": "^0.10.0",
"detect-emoji-support": "^0.1.6",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1",
"lodash": ">=4.17.13",
"node-emoji": "^1.10.0",
"node-fs-extra": "^0.8.2",
"ora": "^3.4.0",
"tar": "^4.4.10",
"uuid": "^3.3.2",
"yargs": "^13.3.0"
}
}