-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.53 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
{
"name": "@dojo/scripts",
"version": "4.0.5-pre",
"description": "Scripts for developing Dojo packages",
"engines": {
"npm": ">=3.0.0"
},
"private": true,
"homepage": "http://dojo.io",
"bugs": {
"url": "https://github.com/dojo/scripts/issues"
},
"license": "BSD-3-Clause",
"main": "main.js",
"files": [
"dist",
"src",
"typings.json"
],
"repository": {
"type": "git",
"url": "https://github.com/dojo/scripts.git"
},
"scripts": {
"clean": "rimraf dist",
"build:static:bin": "cpx \"src/bin/*\" dist/cjs/src/bin",
"build:static": "cpx \"src/**/*.json\" dist/cjs/src",
"build:cjs": "tsc",
"build": "npm-run-all -p build:** -s dojo-package",
"dojo-package": "node dist/cjs/src/package.js",
"dojo-release": "node dist/cjs/src/release.js",
"intern": "intern",
"link": "cd dist/release && npm link",
"lint:ts": "tslint -p .",
"lint:es": "eslint --quiet 'src/**/*.{ts,tsx}'",
"lint:prettier": "prettier -l \"{src,tests}/**/*.{ts,tsx}\"",
"lint": "run-p lint:*",
"prettier": "prettier --write \"{src,tests}/**/*.ts\"",
"precommit": "lint-staged",
"release": "run-s lint clean build \"dojo-release -- {@}\" --",
"test": "run-s lint build intern"
},
"bin": {
"dojo-can-publish-check": "./bin/dojo-can-publish-check",
"dojo-repo-is-clean-check": "./bin/dojo-repo-is-clean-check",
"dojo-install-peer-deps": "./bin/dojo-install-peer-deps",
"dojo-package": "./bin/dojo-package",
"dojo-release": "./bin/dojo-release",
"dojo-tsc-watcher": "./bin/dojo-tsc-watcher"
},
"devDependencies": {
"@types/node": "~9.6.5",
"@types/parse-git-config": "~2.0.0",
"@types/sinon": "~4.3.3",
"@types/yargs": "~10.0.1",
"codecov": "~3.0.4",
"cpx": "~1.5.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"npm-run-all": "~4.1.3",
"rimraf": "~2.6.2",
"sinon": "~4.5.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chalk": "~2.4.0",
"eslint": "^6.8.0",
"intern": "~4.3.0",
"parse-git-config": "~2.0.2",
"prettier": "1.13.7",
"rxjs": "^5.5.6",
"tslint": "~5.11.0",
"tslint-language-service": "~0.9.9",
"typescript": "3.4.5",
"yargs": "~10.1.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"parser": "typescript",
"printWidth": 120,
"arrowParens": "always"
}
}