-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "sots",
"description": "Sequence of Time Segments",
"version": "4.0.4",
"license": "MIT",
"package-lock": "false",
"homepage": "https://github.com/marckassay/sots",
"author": {
"name": "Marc Kassay",
"email": "[email protected]",
"url": "https://marckassay.github.io"
},
"bugs": {
"url": "https://github.com/marckassay/sots/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/marckassay/sots.git"
},
"keywords": [
"time",
"timer",
"sequence",
"interval",
"rxjs",
"stopwatch",
"stitch",
"chain"
],
"dependencies": {
"rxjs": "^6.4.0"
},
"devDependencies": {
"tslint": "^5.15.0",
"tslint-clean-code": "^0.2.9",
"tslint-lines-between-class-members": "^1.3.1",
"typescript": "^3.4.1"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"lib/",
"dist/",
"LICENSE",
"README.md",
"tsconfig.json"
],
"scripts": {
"prepare": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"lint": "tslint 'lib/**/*.ts'"
}
}