-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
59 lines (59 loc) · 1.3 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
{
"name": "dojo-<< package-name >>",
"version": "2.0.0-pre",
"description": "<< DESCRIPTION GOES HERE >>",
"engines": {
"npm": ">=3.0.0"
},
"private": true,
"homepage": "http://dojo.io",
"bugs": {
"url": "https://github.com/dojo/<< package-name >>/issues"
},
"license": "BSD-3-Clause",
"main": "main.js",
"files": [
"dist",
"src",
"typings.json"
],
"repository": {
"type": "git",
"url": "https://github.com/dojo/<< package-name >>.git"
},
"scripts": {
"prepublish": "grunt peerDepInstall",
"precommit": "lint-staged",
"prettier": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"test": "grunt test"
},
"devDependencies": {
"@types/glob": "5.0.*",
"@types/grunt": "0.4.*",
"codecov.io": "0.1.6",
"@dojo/loader": "~0.1.1",
"grunt": "~1.0.1",
"grunt-dojo2": "latest",
"grunt-tslint": "5.0.1",
"husky": "0.14.3",
"intern": "~4.1.0",
"lint-staged": "6.0.0",
"tslint": "5.8.0",
"tslint-plugin-prettier": "1.3.0",
"typescript": "~2.6.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"parser": "typescript",
"printWidth": 120,
"arrowParens": "always"
}
}