This repository was archived by the owner on Dec 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "swagger-schema-utils",
"version": "1.0.1",
"description": "Utilities for normalising and resolving complex (multi-file) Swagger schemas",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"bin": "dist/cli.js",
"scripts": {
"test": "ava **/*.spec.js **/**/*.spec.js --timeout 60s",
"dev": "babel -w src -d dist --copy-files -s",
"test:watch": "ava **/*.spec.js **/**/*.spec.js --watch --verbose --timeout 60s",
"test:cover": "nyc --reporter=lcov --reporter=html npm test && nyc report",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "BABEL_ENV=production babel src -d dist --copy-files -s",
"postinstall": "cp -f hooks/pre-commit.sh .git/hooks/pre-commit"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/EverledgerIO/swagger-schema-utils.git"
},
"keywords": [
"Swagger",
"schema",
"$ref"
],
"author": "Everledger.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/EverledgerIO/swagger-schema-utils/issues"
},
"homepage": "https://github.com/EverledgerIO/swagger-schema-utils#readme",
"babel": {
"presets": [
"es2015",
"stage-0"
],
"env": {
"development": {
"sourceMaps": "inline"
}
},
"plugins": [
"transform-runtime",
"external-helpers",
"transform-flow-strip-types",
[
"fast-async",
{
"env": {
"asyncStackTrace": true
},
"runtimePattern": null,
"useRuntimeModule": true
}
]
]
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"build"
]
},
"dependencies": {
"json-refs": "^2.1.6",
"nodent-runtime": "^3.0.3",
"ramda": "^0.22.1",
"source-map-support": "^0.4.3",
"swagger-parser": "^3.4.1",
"yaml-js": "^0.1.4",
"yargs": "^6.5.0"
},
"devDependencies": {
"@everledger/js-toolchain": "EverledgerIO/js-toolchain#1.1.1",
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.7.1",
"eslint-config-pospi": "^1.0.3",
"eslint-plugin-flowtype": "^2.20.0",
"fast-async": "^6.1.2",
"npm-run-all": "^3.1.1",
"nyc": "^10.0.0",
"proxyquire": "^1.7.10",
"sinon": "^2.0.0-pre.3"
}
}