-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.81 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.81 KB
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
103
104
105
106
107
108
109
{
"name": "jsg07",
"version": "1.0.4",
"description": "JSON Schema Generator with draft 07 support",
"main": "dist/jsg07.common.js",
"browser": "dist/jsg07.min.js",
"scripts": {
"lint": "eslint src test *.js",
"preversion": "npm run lint && npm test && npm run dist",
"dist": "rollup -c && ls -lh dist",
"test": "NODE_ENV=test nyc --reporter=html mocha test/",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/harttle/json-schema-generator.git"
},
"author": "pearl",
"license": "MIT",
"bugs": {
"url": "https://github.com/harttle/json-schema-generator/issues"
},
"files": [
"README.md",
"dist/*"
],
"homepage": "https://github.com/harttle/json-schema-generator#readme",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-external-helpers": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-runtime": "^6.26.0",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.0",
"nyc": "^15.1.0",
"rollup": "^1.32.1",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^17.1.1",
"uglifyjs": "^2.4.11"
},
"nyc": {
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"helpers": false,
"regenerator": true
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}