This repository has been archived by the owner on Jul 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
78 lines (78 loc) · 1.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
{
"name": "@dojo/core",
"version": "2.0.1-pre",
"description": "Basic utilites for common TypeScript development",
"engines": {
"npm": ">=3.0.0"
},
"homepage": "https://dojo.io",
"bugs": {
"url": "https://github.com/dojo/core/issues"
},
"license": "BSD-3-Clause",
"private": true,
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/dojo/core.git"
},
"scripts": {
"prepublish": "grunt peerDepInstall",
"precommit": "lint-staged",
"prettier": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"test": "grunt test"
},
"dependencies": {
"tslib": "~1.8.1"
},
"peerDependencies": {
"@dojo/has": "^2.0.0",
"@dojo/shim": "^2.0.0"
},
"devDependencies": {
"@dojo/loader": "^2.0.0",
"@theintern/leadfoot": "~2.0.2",
"@types/benchmark": "~1.0.0",
"@types/chai": "~4.0.0",
"@types/express": "~4.0.39",
"@types/glob": "~5.0.0",
"@types/grunt": "~0.4.0",
"@types/multer": "~1.3.3",
"@types/node": "~9.6.5",
"@types/sinon": "~1.16.0",
"benchmark": "^1.0.0",
"express": "~4.15.3",
"grunt": "^1.0.1",
"grunt-contrib-clean": ">=1.0.0",
"grunt-contrib-copy": ">=1.0.0",
"grunt-dojo2": "latest",
"grunt-postcss": "^0.8.0",
"grunt-text-replace": ">=0.4.0",
"grunt-ts": ">=5.0.0",
"grunt-tslint": "5.0.1",
"grunt-typings": "^0.1.5",
"husky": "0.14.3",
"intern": "~4.1.0",
"lint-staged": "6.0.0",
"multer": "~1.3.0",
"prettier": "1.9.2",
"remap-istanbul": ">=0.6.3",
"sinon": "~1.17.6",
"tslint": "5.8.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"
}
}