forked from Meir017/ts-timespan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 798 Bytes
/
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
{
"name": "ts-timespan",
"version": "0.4.0",
"description": "TimeSpan library inspired by C#'s TimeSpan",
"main": "dist/timespan.js",
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine test/**/*spec.ts --reporter=jasmine-console-reporter",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Meir017/ts-timespan.git"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Meir017/ts-timespan/issues"
},
"homepage": "https://github.com/Meir017/ts-timespan#readme",
"devDependencies": {
"typescript": "^3.1.1",
"@types/jasmine": "^2.8.9",
"jasmine": "^3.2.0",
"jasmine-console-reporter": "^3.1.0",
"ts-node": "^7.0.1"
}
}