forked from Sequoia/loopback-json-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1007 Bytes
/
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
{
"name": "loopback-json-schemas",
"version": "0.0.1",
"description": "JSONSchema's for the LoopBack framework",
"main": "index.js",
"scripts": {
"serve": "http-server src -a localhost -p8090",
"build": "rimraf dist/* && cp -r src/* dist/ && npm run rewrite-urls",
"rewrite-urls" : "replace 'http://localhost:8090' 'https://raw.githubusercontent.com/Sequoia/loopback-json-schemas/master/dist' dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sequoia/loopback-json-schemas.git"
},
"keywords": [
"loopback",
"jsonschema",
"vscode",
"intellisense"
],
"author": "Sequoia McDowell <[email protected]> (http://sequoia.makes.software/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sequoia/loopback-json-schemas/issues"
},
"homepage": "https://github.com/Sequoia/loopback-json-schemas#readme",
"devDependencies": {
"http-server": "^0.9.0",
"replace": "^0.3.0",
"rimraf": "^2.5.2"
}
}