-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.85 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@dojo/cli",
"version": "7.0.1-pre",
"description": "Dojo CLI utility",
"homepage": "https://dojo.io",
"bugs": {
"url": "https://github.com/dojo/cli/issues"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"license": "BSD-3-Clause",
"keywords": [
"dojo",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/dojo/cli.git"
},
"scripts": {
"build:static:dev": "cpx \"{src,tests}/**/*.{d.ts,json,ejs}\" dist/dev",
"build:static:release": "cpx \"src/**/*.{d.ts,json}\" dist/release",
"build:umd": "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:ts": "tslint -p .",
"lint:prettier": "prettier -l \"{src,tests}/**/*.{ts,tsx}\"",
"lint": "run-p lint:*",
"precommit": "lint-staged",
"prettier": "prettier --write \"{src,tests}/**/*.{ts,tsx}\"",
"release": "run-s lint clean build \"dojo-release -- {@}\" --",
"test": "run-s 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\""
},
"bin": {
"dojo": "bin/dojo.js"
},
"files": [
"dist",
"src",
"typings.json"
],
"dependencies": {
"@speedy/json-extends": "1.2.0",
"ajv": "6.6.2",
"chalk": "2.4.1",
"configstore": "3.1.2",
"cross-spawn": "5.1.0",
"detect-indent": "5.0.0",
"ejs": "2.6.1",
"fs-extra": "7.0.0",
"globby": "6.1.0",
"inquirer": "6.2.2",
"jsonschema": "1.2.4",
"libnpmsearch": "^2.0.0",
"pkg-dir": "2.0.0",
"readline-sync": "1.4.9",
"slice-ansi": "1.0.0",
"string-width": "2.1.1",
"tslib": "1.8.1",
"update-notifier": "2.5.0",
"yargs": "10.1.2"
},
"devDependencies": {
"@dojo/scripts": "~3.0.1",
"@types/configstore": "^2.1.1",
"@types/detect-indent": "^5.0.0",
"@types/ejs": "2.6.3",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.30",
"@types/globby": "^0.6.0",
"@types/inquirer": "0.0.44",
"@types/mockery": "^1.4.29",
"@types/node": "~9.6.5",
"@types/readline-sync": "^1.4.3",
"@types/sinon": "~4.3.3",
"@types/update-notifier": "^1.0.1",
"@types/yargs": "^10.0.0",
"codecov": "~3.0.4",
"cpx": "~1.5.0",
"glob": "^7.0.3",
"husky": "0.14.3",
"lint-staged": "9.2.1",
"mockery": "^2.1.0",
"npm-run-all": "4.1.5",
"rimraf": "~2.6.2",
"sinon": "~4.5.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"parser": "typescript",
"printWidth": 120,
"arrowParens": "always"
}
}