-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "rollup-quickstart",
"version": "1.0.0",
"description": "Quickstarter project for building packages with rollup",
"main": "dist/rollup-quickstart.js",
"jsnext:main": "dist/rollup-quickstart.mjs",
"scripts": {
"prebuild": "eslint src test",
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "ava",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duske/rollup-quickstart.git"
},
"keywords": [
"es6",
"modules",
"rollup",
"bundle",
"browser"
],
"author": "Dustin Chabrowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/duske/rollup-quickstart/issues"
},
"files": [
"src",
"dist"
],
"homepage": "https://github.com/duske/rollup-quickstart#readme",
"dependencies": {},
"devDependencies": {
"ava": "^0.15.2",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-register": "^6.9.0",
"babelrc-rollup": "^1.1.0",
"eslint": "^2.13.1",
"eslint-plugin-ava": "^2.5.0",
"rollup": "^0.30.0",
"rollup-plugin-babel": "^2.5.1",
"rollup-plugin-includepaths": "^0.1.5",
"rollup-watch": "^2.4.0"
}
}