-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
30 lines (30 loc) · 938 Bytes
/
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
{
"name": "requirejs-babel",
"version": "0.0.10",
"description": "An AMD loader plugin for Babel",
"repository": {
"type": "git",
"url": "https://github.com/mikach/requirejs-babel"
},
"main": "index.js",
"scripts": {
"prepare": "npm run generate && npm run optimize",
"generate": "babel-external-helpers -t var > demo-polyfill/babel-helpers.js",
"optimize": "r.js -o demo/build.config.js && r.js -o demo-polyfill/build.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michael <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@babel/standalone": "7.x",
"babel-plugin-module-resolver-standalone": "0.x"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/polyfill": "7.4.0",
"@babel/standalone": "7.4.2",
"babel-plugin-module-resolver-standalone": "0.0.1",
"requirejs": "^2.3.6"
}
}