-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 953 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 953 Bytes
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
{
"name": "json2interface",
"version": "0.1.14",
"description": "Generate TypeScript interfaces from JSON data",
"main": "index.js",
"types": "./lib/json2interface.d.ts",
"scripts": {
"test": "npm run-script build && nyc jasmine",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michelefenu/json2interface.git"
},
"keywords": [
"JSON",
"TypeScript",
"interface"
],
"author": "Michele Fenu",
"license": "MIT",
"bugs": {
"url": "https://github.com/michelefenu/json2interface/issues"
},
"homepage": "https://github.com/michelefenu/json2interface#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"jasmine": "^3.6.1",
"nyc": "^15.1.0",
"prettier-standard": "^15.0.1",
"standard": "^14.3.4"
},
"standard": {
"ignore": [
"/lib/**"
]
}
}