-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "rollup-plugin-userscript-header",
"version": "1.0.0",
"description": "Rollup plugin for generating userscript headers",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run test",
"pretest": "npm run build",
"test": "ava test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NotOats/rollup-plugin-userscript-header.git"
},
"files":[
"dist",
"index.d.ts",
"README.md",
"LICENSE"
],
"keywords": [
"rollup-plugin",
"userscript"
],
"author": "NotOats",
"license": "MIT",
"bugs": {
"url": "https://github.com/NotOats/rollup-plugin-userscript-header/issues"
},
"homepage": "https://github.com/NotOats/rollup-plugin-userscript-header#readme",
"dependencies": {
"magic-string": "^0.25.4",
"userscript-meta": "^1.0.1"
},
"devDependencies": {
"ava": "^2.4.0",
"rollup-plugin-buble": "^0.19.8"
},
"peerDependencies": {
"rollup": "^1.27.8"
}
}