-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "generator-gjsify",
"version": "0.0.0",
"description": "Generate new gjsify projects",
"author": {
"name": "JumpLink",
"email": "pascal@jumplink.eu"
},
"keywords": [
"yeoman-generator"
],
"scripts": {
"build": "tsc -p .",
"rebuild": "npm run clean && npm run build",
"watch": "tsc -p . --watch",
"clean": "rimraf ./lib",
"lint": "tslint -p ./ -t verbose && markdownlint ./templates/**/*.md ./templates/**/*.md.ejs || exit 0",
"test": "mocha",
"prepare": "npm run rebuild"
},
"dependencies": {
"chalk": "^2.4.2",
"dedent": "^0.7.0",
"extended-yo-generator": "^1.0.13",
"yosay": "^2.0.2"
},
"devDependencies": {
"@manuth/tsconfig": "^1.2.2",
"@manuth/tslint-presets": "^1.0.4",
"@types/dedent": "^0.7.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/yosay": "0.0.29",
"chalk": "^2.4.2",
"dedent": "^0.7.0",
"extended-yo-generator": "^1.0.13",
"markdownlint-cli": "^0.18.0",
"mocha": "^6.2.0",
"rimraf": "^3.0.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"typescript-tslint-plugin": "^0.5.4",
"yo": "^3.1.0",
"yosay": "^2.0.2"
}
}