-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.41 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
50
51
52
53
54
{
"name": "rollup-test-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",
"dev": "rollup -c -w",
"watch": "rollup -c -w",
"pretest": "rollup -c",
"test": "mocha",
"prepublish": "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": {
"the-answer": "^1.0.0"
},
"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.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.3.1"
}
}