forked from futurist/rollup-plugin-es3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 925 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 925 Bytes
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
{
"name": "rollup-plugin-es3",
"version": "1.0.3",
"description": "Make rollup compatible with ES3, remove Object.defineProperty of __esModule part",
"main": "dist/rollup-plugin-es3.cjs.js",
"jsnext:main": "dist/rollup-plugin-es3.es.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "mocha test/*.js",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/futurist/rollup-plugin-es3.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"esModule",
"Object.defineProperty"
],
"author": "James Yang <jamesyang999@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/futurist/rollup-plugin-es3/issues"
},
"homepage": "https://github.com/futurist/rollup-plugin-es3#readme",
"devDependencies": {
"mocha": "^3.0.2",
"rollup": "^0.34.10"
}
}