forked from selsamman/supertype
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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": "supertype",
"description": "A type system for classical inheritence, mix-ins and composition.",
"homepage": "https://github.com/selsamman/supertype",
"version": "2.2.3",
"dependencies": {
"reflect-metadata": "^0.1.9"
},
"devDependencies": {
"chai": "*",
"eslint": "3.7.x",
"istanbul": "0.4.5",
"mocha": "^3.1.2",
"sinon": "1.15.x",
"q": "1.x",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"typescript": "^2.1.6",
"ts-node": "*"
},
"scripts": {
"lint": "eslint .",
"test": "istanbul cover _mocha -- test/* -R spec",
"test:config": "mocha test/config",
"test:example": "mocha test/example",
"test:typescript": "mocha --compilers ts:ts-node/register,tsx:ts-node/register test/typescript/animals.ts"
},
"directories": {
},
"engines": {
"node": ">=0.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/selsamman/supertype.git"
},
"bugs": {
"url": "http://github.com/selsamman/supertype/issues"
},
"optionalDependencies": {}
}