-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 761 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 761 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
{
"name": "amdloader",
"version": "0.0.1",
"description": "An amd loader",
"main": "./lib/index.bundle.js",
"scripts": {
"test": "./node_modules/.bin/ava test/utils.spec.js",
"build": "./node_modules/.bin/rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"amd",
"async loader"
],
"author": {
"name": "dzyhenry",
"email": "dzyhenry@foxmail.com"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.9.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.3.1"
}
}