This repository was archived by the owner on Jul 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 1.92 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
{
"name": "@dojo/diagnostics",
"version": "0.1.0-pre",
"description": "Modules for providing diagnostics for Dojo 2 applications",
"engines": {
"npm": ">=5.5.0",
"node": ">=9.2.0"
},
"private": true,
"homepage": "http://dojo.io",
"bugs": {
"url": "https://github.com/dojo/diagnostics/issues"
},
"license": "BSD-3-Clause",
"main": "main.js",
"files": [
"src",
"tests",
"Gruntfile.js",
"tsconfig.json",
"tslint.json"
],
"repository": {
"type": "git",
"url": "https://github.com/dojo/diagnostics.git"
},
"scripts": {
"build": "grunt",
"precommit": "lint-staged",
"prepare": "grunt peerDepInstall",
"prettier": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"start": "serve .",
"test": "grunt test"
},
"dependencies": {
"grunt-cli": "1.2.0",
"serve": "^6.4.1"
},
"peerDependencies": {
"@dojo/core": "~0.2.1",
"@dojo/has": "~0.1.1",
"@dojo/shim": "~0.2.3",
"@dojo/widget-core": "~0.3.0",
"@dojo/routing": "~0.2.0",
"@dojo/stores": "~0.2.0"
},
"devDependencies": {
"@dojo/core": "~0.2.1",
"@dojo/has": "~0.1.1",
"@dojo/i18n": "^0.2.0",
"@dojo/interfaces": "~0.1.0",
"@dojo/loader": "~0.1.0",
"@dojo/shim": "~0.2.3",
"@dojo/widget-core": "~0.3.0",
"@dojo/widgets": "~0.2.2",
"@types/glob": "5.0.*",
"@types/grunt": "0.4.*",
"@types/sinon": "^1.16.31",
"grunt": "~1.0.1",
"grunt-dojo2": "latest",
"grunt-tslint": "5.0.1",
"husky": "0.14.3",
"lint-staged": "6.0.0",
"prettier": "1.9.2",
"intern": "^4.1.4",
"tslint": "5.8.0",
"tslint-plugin-prettier": "1.3.0",
"typescript": "~2.5.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"parser": "typescript",
"printWidth": 120,
"arrowParens": "always"
}
}