-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.32 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
{
"name": "rollup-plugin-type-as-json-schema",
"version": "0.2.6",
"description": "A rollup plugin to load a ts type as json schema object.",
"main": "dist/index.cjs",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"index.d.ts"
],
"sideEffects": false,
"scripts": {
"commit": "lint-staged && git-cz -n",
"build": "rollup -c",
"preversion": "rimraf dist && npm run build",
"postversion": "git push --follow-tags && npm publish",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --fix src test *.js",
"test": "cross-env NODE_ENV=test nyc mocha",
"start": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmzy/rollup-plugin-type-as-json-schema.git"
},
"keywords": [
"rollup-plugin",
"vite-plugin",
"json-schema",
"typescript",
"mock"
],
"author": "wmzy",
"license": "MIT",
"bugs": {
"url": "https://github.com/wmzy/rollup-plugin-type-as-json-schema/issues"
},
"homepage": "https://github.com/wmzy/rollup-plugin-type-as-json-schema",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/mocha": "^8.2.2",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.52.3",
"rollup-plugin-babel": "^4.4.0",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^11.1.1",
"snap-shot-it": "^7.9.6",
"typescript": "^4.3.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"lodash": "^4.17.21",
"ts-json-schema-generator": "^1.1.2"
}
}