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 30
/
Copy pathpackage.json
71 lines (71 loc) · 1.56 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
{
"name": "@dojo/routing",
"version": "2.0.1-pre",
"description": "A routing library for Dojo 2 applications",
"private": true,
"homepage": "https://dojo.io",
"bugs": {
"url": "https://github.com/dojo/routing/issues"
},
"license": "BSD-3-Clause",
"main": "main.js",
"files": [
"dist",
"src",
"typings.json"
],
"engines": {
"npm": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dojo/routing.git"
},
"scripts": {
"prepublish": "grunt peerDepInstall",
"precommit": "lint-staged",
"prettier": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
"test": "grunt test"
},
"peerDependencies": {
"@dojo/core": "^2.0.0",
"@dojo/has": "^2.0.0",
"@dojo/shim": "^2.0.0",
"@dojo/i18n": "^2.0.0",
"@dojo/widget-core": "^2.0.0"
},
"devDependencies": {
"@dojo/loader": "^2.0.0",
"@types/glob": "~5.0.0",
"@types/grunt": "~0.4.0",
"@types/node": "~9.6.5",
"@types/sinon": "^4.1.2",
"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",
"prettier": "1.9.2",
"sinon": "^4.1.3",
"tslint": "5.8.0",
"typescript": "~2.6.1"
},
"dependencies": {
"tslib": "~1.8.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"parser": "typescript",
"printWidth": 120,
"arrowParens": "always"
}
}