forked from frostney/rollup-plugin-local-resolve
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "rollup-plugin-local-resolve",
"version": "1.1.0",
"description": "Resolves index.js files with Rollup",
"main": "dist/rollup-plugin-local-resolve.js",
"jsnext:main": "dist/rollup-plugin-local-resolve.es2015.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup-babel-lib-bundler -f cjs,es6 src/index.js",
"prepublish": "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": {
"ava": "^0.12.0",
"babel-preset-es2015-loose-rollup": "^7.0.0",
"coveralls": "^2.11.8",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"npm-run-all": "^1.5.1",
"nyc": "^5.6.0",
"rimraf": "^2.5.2",
"rollup": "^0.25.4",
"rollup-babel-lib-bundler": "^2.2.4"
}
}