-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "loopback-jsonschema-generator",
"version": "1.1.1",
"description": "Generates JSON schemas for your Loopback models",
"main": "dist",
"scripts": {
"test": "NODE_ENV=test mocha test/unit --opts mocha.opts",
"test:watch": "npm test -- -w",
"test:coverage": "nyc npm test",
"test:report": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"test:e2e": "NODE_ENV=test mocha test/e2e --opts mocha.opts",
"clean": "rimraf dist/*",
"lint": "eslint .",
"build": "NODE_ENV=production babel src -d dist -D",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisandrews7/loopback-jsonschema-generator.git"
},
"author": "Chris Andrews",
"license": "ISC",
"keywords": [
"loopback",
"json-schema",
"json",
"schema",
"json schema",
"jsonschema",
"generator",
"strongloop",
"component"
],
"bugs": {
"url": "https://github.com/chrisandrews7/loopback-jsonschema-generator/issues"
},
"homepage": "https://github.com/chrisandrews7/loopback-jsonschema-generator#readme",
"dependencies": {
"lodash": "^4.17.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.11.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"loopback": "^2.36.0",
"loopback-boot": "^2.23.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"supertest": "^2.0.1"
}
}