This repository has been archived by the owner on Dec 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
101 lines (101 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
93
94
95
96
97
98
99
100
101
{
"name": "grunt-dojo2",
"version": "4.0.3-pre",
"description": "A package of Grunt tasks to use with Dojo 2 Packages",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://dojo.io",
"keywords": [
"dojo2",
"gruntplugin"
],
"bugs": {
"url": "https://github.com/dojo/grunt-dojo2/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "tslint -p . && prettier -l \"{src,tests}/**/*.{ts,tsx}\"",
"prepublish": "tsc -p .",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.ts\"",
"test": "tsc -p . && intern",
"ci": "rm -rf tmp && tsc -p . && intern config=@ci && codecov --file=coverage/coverage.json"
},
"author": "Bryan Forbes <[email protected]>",
"contributors": [
{
"name": "Kitson Kelly",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dojo/grunt-dojo2.git"
},
"license": "BSD-3-Clause",
"typings": "index.d.ts",
"dependencies": {
"codecov": "~3.0.4",
"cssnano": "^3.10.0",
"dts-generator": ">=1.7.0",
"execa": "^0.4.0",
"glob": "^7.1.2",
"grunt-contrib-clean": "~1.1.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-postcss": "^0.8.0",
"grunt-text-replace": ">=0.4.0",
"grunt-ts": "^6.0.0-beta.21",
"grunt-typings": "^0.1.5",
"intern": "~4.3.3",
"lodash": "^4.15.0",
"parse-git-config": "^0.4.2",
"pkg-dir": "^1.0.0",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"postcss-modules": "^0.6.3",
"remap-istanbul": ">=0.6.3",
"resolve-from": "^2.0.0",
"shelljs": "^0.7.6",
"typed-css-modules": "^0.3.1",
"typedoc": "0.5.9",
"umd-wrapper": "^0.1.0"
},
"devDependencies": {
"@types/glob": "^5.0.33",
"@types/grunt": "~0.4.20",
"@types/lodash": "4.14.56",
"@types/mockery": "~1.4.29",
"@types/node": "~9.6.5",
"@types/shelljs": "^0.6.0",
"@types/sinon": "~1.16.32",
"dojo-loader": "latest",
"grunt": "^1.0.1",
"grunt-tslint": "5.0.1",
"husky": "0.14.3",
"lint-staged": "6.0.0",
"mockery": "^2.0.0",
"prettier": "1.13.7",
"shx": ">=0.1.2",
"sinon": "^1.17.6",
"tslint": "~5.11.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"
}
}