-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "colab_inspector",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/blois/colab_inspector.git"
},
"dependencies": {
"yarn": "^1.3.2"
},
"devDependencies": {
"@types/chai": "^4.0.8",
"@types/jasmine": "^2.8.2",
"awesome-typescript-loader": "^3.4.1",
"chai": "^4.1.2",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-webpack": "^2.0.6",
"mocha": "^4.0.1",
"source-map-loader": "^0.2.3",
"tslint": "^5.7.0",
"typescript": "^2.6.0",
"webpack": "^3.10.0"
},
"scripts": {
"tsc": "tsc",
"build": "webpack",
"lint": "tslint source/**/*.ts",
"fix": "tslint --fix source/**/*.ts",
"test": "karma start karma.unit.js --single-run --browsers=ChromeHeadless",
"test_server": "karma start karma.unit.js"
}
}