-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 769 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 769 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
{
"name": "typescript-jasmine-boilerplate",
"version": "1.0.0",
"description": "An example TypeScript project with Jasmine unit tests",
"scripts": {
"test": "ts-node ./test-runner",
"test:watch": "nodemon --ext ts --watch src --watch test --exec ts-node ./test-runner",
"build:watch": "tsc ./src/main.ts --watch",
"watch": "run-p build:watch test:watch",
"start": "tsc ./src/main.ts && node ./src/main.js"
},
"author": "Tsvetomir Tsonev",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.6.3",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5",
"rxjs": "^5.5.2",
"ts-node": "^3.3.0",
"tslib": "^1.8.0",
"typescript": "^2.4.0"
}
}