-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "esri-webpack-typescript",
"version": "0.0.0",
"description": "ESRI JSAPI with Webpack demo, using TypeScript",
"main": "dist/main.bundle.js",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"start": "webpack-dev-server --hot --open",
"test": "karma start --single-run",
"postinstall": "typings install"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"ESRI",
"webpack",
"typescript"
],
"files": [
"dist"
],
"author": "Ian Firkin",
"license": "MIT",
"devDependencies": {
"html-webpack-plugin": "^2.28.0",
"jasmine-ajax": "~3.1.1",
"jasmine-core": "~2.3.4",
"karma": "^0.13.21",
"karma-chrome-launcher": "~0.1.12",
"karma-dojo": "0.0.1",
"karma-ie-launcher": "~0.2.0",
"karma-jasmine": "~0.3.5",
"karma-jasmine-ajax": "~0.1.12",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"ts-loader": "^0.8.1",
"tslint": "^3.2.1",
"typescript": "^1.8.5",
"typings": "^1.0.4",
"webpack": "^2.2.0",
"webpack-dev-server": "2.2.0"
}
}