forked from RobotlegsJS/SignalsJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "@gamestdio/signals",
"version": "1.0.0",
"description": "Minimal Signal implementation for JavaScript.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**.test.ts",
"tslint": "tslint",
"prepublish": "tsc -d"
},
"repository": {
"type": "git",
"url": "[email protected]:gamestdio/Signals.git"
},
"keywords": ["Signal", "Signals"],
"author": "Endel Dreyer",
"contributors": [
"Endel Dreyer <[email protected]>",
"Bartosz Oczujda <[email protected]>",
"Tiago Schenkel <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gamestdio/Signals/issues"
},
"homepage": "https://github.com/gamestdio/Signals#readme",
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/sinon": "^4.3.0",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"sinon": "^5.0.0",
"sinon-chai": "^3.0.0",
"ts-loader": "^4.1.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
}
}