-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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": "maketypes",
"version": "1.1.2",
"description": "Make TypeScript types and proxy objects from example JSON objects. Can use proxy objects to dynamically type check JSON at runtime.",
"main": "lib/index.js",
"types": "lib/index",
"scripts": {
"prepublish": "tsc",
"generate:test": "node ./test/common/generateSamples.js",
"build:test": "tsc -p test/tsconfig.json",
"mocha": "mocha",
"istanbul": "istanbul cover ./test/common/generateSamples.js",
"coverage": "npm-run-all --serial prepublish istanbul",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"travis": "npm-run-all --serial test coverage coveralls",
"test": "npm-run-all --serial prepublish generate:test build:test mocha"
},
"bin": {
"make_types": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jvilk/MakeTypes.git"
},
"keywords": [
"TypeScript",
"types",
"JSON",
"synthesis"
],
"author": "John Vilk <jvilk@cs.umass.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jvilk/MakeTypes/issues"
},
"homepage": "https://github.com/jvilk/MakeTypes#readme",
"devDependencies": {
"@types/mocha": "^5.2.4",
"@types/node": "0.0.2",
"@types/yargs": "^6.3.3",
"coveralls": "^3.0.2",
"istanbul": "^1.0.0-alpha",
"mocha": "^5.2.0",
"npm-run-all": "^3.1.2",
"typescript": "^2.1.4"
},
"dependencies": {
"yargs": "^6.5.0"
}
}