-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.79 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
{
"name": "resource-loader-inspector",
"version": "0.0.1",
"description": "inspector for resource-loader",
"main": "lib/resource-loader-inspector.min.js",
"typings": "lib/lib-ts/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/drecom/resource-loader-inspector.git"
},
"scripts": {
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"build:docs": "typedoc 'src/'",
"deploy:www": "cpx lib/resource-loader-inspector.js example/www/assets/ && cpx lib/resource-loader-inspector.js.map example/www/assets/ && cpx node_modules/resource-loader/dist/resource-loader.js example/www/assets/",
"test:unit": "karma start",
"test:lint": "tslint -p tsconfig.json --format stylish 'src/**/*.ts*'",
"workflow:test": "npm run test:unit && npm run test:lint",
"workflow:build": "npm run build:dev && npm run build:prod && npm run build:docs",
"workflow:deploy": "npm i && npm run workflow:build && npm run deploy:www",
"example": "cd example && node ."
},
"keywords": [
"resource-loader",
"debugger"
],
"author": "Drecom Co.,Ltd.",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"cpx": "^1.5.0",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.0",
"mocha": "^5.1.1",
"postinstall-build": "^5.0.1",
"power-assert": "^1.5.0",
"resource-loader": "^2.1.1",
"sinon": "^4.5.0",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.9.2",
"typedoc": "^0.11.1",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
}
}