forked from piuccio/rollup-plugin-amd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 904 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 904 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
37
38
39
40
41
42
{
"name": "rollup-plugin-amd",
"version": "4.0.0",
"description": "Convert AMD files to ES2016 modules",
"main": "dist/rollup-plugin-amd.cjs.js",
"module": "dist/rollup-plugin-amd.es.js",
"jsnext:main": "dist/rollup-plugin-amd.es.js",
"dependencies": {
"@buxlabs/amd-to-es6": "^0.13.3",
"rollup-pluginutils": "^2.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/piuccio/rollup-plugin-amd"
},
"devDependencies": {
"eslint": "^5.12.1",
"mocha": "^5.2.0",
"rollup": "^1.1.2",
"rollup-plugin-buble": "^0.19.6"
},
"scripts": {
"pretest": "rollup -c",
"test": "mocha",
"posttest": "eslint src test",
"prepublish": "npm test"
},
"files": [
"src",
"dist"
],
"keywords": [
"rollup",
"rollup-plugin",
"requirejs",
"amd"
],
"engines": {
"node": ">=8"
},
"license": "Apache-2.0"
}