-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 808 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 808 Bytes
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
{
"name": "t-money",
"email": "",
"url": "",
"version": "0.0.1",
"watch": {
"build": {
"patterns": [
"main.ts",
"src",
"test"
],
"extensions": "ts"
}
},
"scripts": {
"build": "tsc",
"serve": "http-server -o -c-1",
"start": "concurrently \"npm-watch build\" \"npm run serve\" ",
"test:build": "tsc",
"test": "karma start"
},
"devDependencies": {
"concurrently": "^3.5.0",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0"
},
"dependencies": {
"@types/jasmine": "^2.5.53",
"es6-module-loader": "^0.17.11",
"inversify": "^4.2.0",
"karma-systemjs": "^0.16.0",
"reflect-metadata": "^0.1.10",
"systemjs": "^0.19.47"
}
}