-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "@havenlife/semotus",
"description": "A subclass of supertype that synchronizes sets of objects.",
"homepage": "https://github.com/selsamman/semotus",
"version": "3.2.0",
"dependencies": {
"q": "1.x"
},
"peerDependencies": {
"@havenlife/supertype": "3.3.*"
},
"devDependencies": {
"@havenlife/supertype": "3.3.*",
"@types/bluebird": "*",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.65",
"@types/q": "*",
"chai": "3.x",
"eslint": "3.7.x",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"sinon": "1.15.x",
"underscore": "^1.9.1",
"ts-node": "^6.1.0",
"typescript": "2.9.1"
},
"scripts": {
"lint": "eslint .",
"tsTests": "istanbul cover _mocha -- test/supertype/semotus.js -R spec",
"debugTSTests": "mocha --inspect-brk test/supertype/semotus.js",
"debugJSTests": "mocha --inspect-brk test/*.js",
"test:ts": "npm run compile && npm run tsTests",
"test": "mocha test/*.js test/supertype/semotus.js",
"coverage": "istanbul cover _mocha -- test/supertype/semotus.js -R spec",
"compile": "tsc"
},
"directories": {},
"engines": {
"node": ">=0.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/haven-life/semotus.git"
},
"bugs": {
"url": "http://github.com/haven-life/semotus/issues"
},
"optionalDependencies": {}
}