-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
86 lines (86 loc) · 2.35 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
{
"name": "@dojo/cli-create-app",
"version": "8.0.1-pre",
"description": "Command to scaffold a new app",
"private": true,
"homepage": "https://dojo.io",
"bugs": {
"url": "https://github.com/dojo/cli-create-app/issues"
},
"license": "BSD-3-Clause",
"main": "main.js",
"files": [
"dist",
"src",
"typings.json"
],
"engines": {
"node": ">=6",
"npm": ">=3"
},
"repository": {
"type": "git",
"url": "https://github.com/dojo/cli-create-app.git"
},
"scripts": {
"build:static:dev": "cpx \"{src,tests}/**/*.{d.ts,ejs}\" dist/dev",
"build:static:dev:templates": "cpx \"src/templates/**/*\" dist/dev/src/templates",
"build:static:release": "cpx \"src/templates/**/*\" dist/release/templates",
"build:cjs": "tsc",
"build": "npm-run-all -p build:** -s dojo-package",
"clean": "rimraf dist coverage",
"dojo-package": "dojo-package",
"dojo-release": "dojo-release",
"intern": "intern",
"lint:tslint": "tslint -p .",
"lint:prettier": "prettier -l \"{src,tests}/**/*.{ts,tsx,css}\"",
"lint": "run-p lint:*",
"precommit": "lint-staged",
"prettier": "prettier --write \"{src,tests}/**/*.{ts,tsx,css}\"",
"release": "run-s lint clean build \"dojo-release -- {@}\" --",
"test": "run-s clean build intern",
"uploadCoverage": "codecov --file=coverage/coverage.json",
"watch:ts": "dojo-tsc-watcher -p tsconfig.json -- dojo-package",
"watch": "run-p watch:ts \"build:static:** -- --watch\""
},
"devDependencies": {
"@dojo/cli": "~8.0.0",
"@dojo/scripts": "~4.0.0",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^7.1.0",
"@types/mockery": "^1.4.29",
"@types/node": "~9.6.5",
"@types/sinon": "~4.3.3",
"@types/yargs": "^10.0.0",
"codecov": "~3.0.4",
"cpx": "~1.5.0",
"husky": "^0.14.3",
"lint-staged": "10.0.9",
"mockery": "^1.7.0",
"npm-run-all": "~4.1.3",
"rimraf": "~2.6.2",
"sinon": "~4.5.0",
"yargs": "^10.0.3"
},
"dependencies": {
"chalk": "2.4.1",
"cross-spawn": "5.1.0",
"fs-extra": "5.0.0",
"glob": "^7.1.3",
"ora": "0.3.0",
"pkg-dir": "2.0.0",
"tslib": "1.8.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"arrowParens": "always"
}
}