forked from frostney/rollup-plugin-local-resolve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "rollup-plugin-local-resolve",
"version": "1.1.0",
"description": "Resolves index.js files with Rollup",
"main": "dist/rollup-plugin-local-resolve.cjs.js",
"module": "dist/rollup-plugin-local-resolve.es.js",
"jsnext:main": "dist/rollup-plugin-local-resolve.es.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepublish": "npm run build",
"prepare": "npm run build",
"lint": "eslint .",
"pretest": "npm-run-all -p build lint",
"test": "ava test/index.js",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frostney/rollup-plugin-local-resolve.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"resolve",
"folder",
"index"
],
"files": [
"dist",
"src"
],
"author": "Johannes Stein",
"license": "MIT",
"bugs": {
"url": "https://github.com/frostney/rollup-plugin-local-resolve/issues"
},
"homepage": "https://github.com/frostney/rollup-plugin-local-resolve#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"ava": "^2.4.0",
"babel-preset-es2015-loose-rollup": "^7.0.0",
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"rollup": "^1.21.4",
"rollup-babel-lib-bundler": "^3.1.0",
"rollup-plugin-babel": "^4.3.3"
}
}