-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 KB
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-starter-project",
"version": "1.0.0",
"description": "Sample project for packages built with rollup.",
"main": "dist/rollup-starter-project.js",
"module": "dist/rollup-starter-project.mjs",
"jsnext:main": "dist/rollup-starter-project.mjs",
"scripts": {
"prebuild": "eslint lib test",
"build": "rollup -c --environment BUILD:production",
"watch": "rollup -c -w",
"pretest": "rollup -c",
"test": "mocha",
"prepublish": "BUILD=production npm test"
},
"repository": "rollup/rollup-starter-project",
"keywords": [
"es6",
"modules",
"rollup",
"bundle",
"browser"
],
"author": "Brian Donovan",
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup-starter-project/issues"
},
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/rollup/rollup-starter-project#readme",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^4.1.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-watch": "^4.0.0"
}
}