forked from dojo/widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "@dojo/widgets",
"version": "6.0.0-pre",
"description": "Dojo Widgets",
"private": true,
"homepage": "https://dojo.io",
"bugs": {
"url": "https://github.com/dojo/widgets/issues"
},
"license": "BSD-3-Clause",
"main": "main.js",
"engines": {
"npm": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dojo/widgets.git"
},
"scripts": {
"prepublish": "grunt peerDepInstall",
"test": "grunt test",
"build-custom-elements": "shx rm -rf output && dojo build widget",
"dist-custom-elements": "npm run build-custom-elements && shx rm -rf dist/all/dist && shx cp -r output/dist dist/all/"
},
"peerDependencies": {
"@dojo/framework": "^5.0.0"
},
"devDependencies": {
"@dojo/cli": "^5.0.0",
"@dojo/cli-build-widget": "^5.0.0",
"@dojo/loader": "^2.0.0",
"@theintern/a11y": "~0.2.0",
"@types/execa": "^0.8.1",
"@types/glob": "5.0.*",
"@types/grunt": "0.4.*",
"@types/jsdom": "2.0.*",
"@types/node": "~9.6.5",
"@types/sinon": "^1.16.31",
"execa": "^0.9.0",
"grunt": "^1.0.1",
"grunt-dojo2": "~4.0.0",
"grunt-tslint": "^5.0.1",
"jsdom": "^9.5.0",
"load-grunt-tasks": "^3.5.2",
"pkg-dir": "^2.0.0",
"shx": "^0.2.2",
"sinon": "^1.17.6",
"ts-node": "^3.3.0",
"typescript": "~2.6.1"
},
"dependencies": {
"tslib": "~1.8.1"
}
}