-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 986 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
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "module-maker",
"version": "1.0.2",
"description": "Make an ordinary JavaScript object into a superheroic module (CommonJS, AMD, or global)",
"main": "lib/module-maker.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chriskwan/module-maker.git"
},
"keywords": [
"module",
"commonjs",
"amd",
"global",
"object",
"javascript",
"common",
"js",
"require",
"define",
"maker",
"make",
"modules"
],
"author": "Chris Kwan <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/chriskwan/module-maker/issues"
},
"homepage": "https://github.com/chriskwan/module-maker#readme",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13"
}
}