-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "rollup-plugin-content",
"version": "0.7.0",
"description": "Rollup plugin to generate content and its summaries for i18n static sites",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"typings": "dist/types/index.d.ts",
"keywords": [
"rollup-plugin",
"rollup",
"modern bundle",
"legacy bundle"
],
"scripts": {
"prebuild": "rm -rf dist/types/* && tsc",
"build": "rollup -c",
"lint": "eslint --ext .ts src",
"prerelease": "NODE_ENV=production npm run build",
"release": "npm publish"
},
"author": "Sergii Stotskyi <sergiy.stotskiy@freaksidea.com>",
"license": "MIT",
"engines": {
"npm": "^6.0.0"
},
"files": [
"dist",
"*.d.ts"
],
"peerDependencies": {
"rollup": "^1.20.0 || ^2.0.0",
"@rollup/pluginutils": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"json-schema-to-typescript": "^8.1.0",
"lint-staged": "^10.0.8",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.4.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix --ext .ts,.js"
]
},
"dependencies": {
"@sindresorhus/slugify": "^0.11.0",
"ajv": "^6.12.0",
"lodash": "^4.17.15"
}
}