-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 1.57 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "npm-packer",
"version": "1.1.1",
"description": "Produces zero-dependencies node module",
"license": "MIT",
"repository": "sheerun/bundle-package",
"author": {
"name": "Adam Stankiewicz",
"email": "[email protected]",
"url": "sheerun.net"
},
"bin": "lib/cli.js",
"engines": {
"node": ">=0.10.0"
},
"main": "lib/index.js",
"scripts": {
"test": "ava",
"lint": "xo",
"build": "rimraf lib && babel src --out-dir lib --loose"
},
"files": [
"lib"
],
"keywords": [
"cli-app",
"cli"
],
"dependencies": {
"babel-core": "6.6.0",
"babel-plugin-module-alias": "^1.4.0",
"babel-runtime": "6.6.0",
"babylon": "^6.8.0",
"child-process-promise": "^2.0.1",
"cli-spinner": "^0.2.5",
"download": "^4.4.3",
"enfsfind": "^0.1.0",
"fetch-file": "^1.0.1",
"fs-extra": "^0.30.0",
"fs-extra-promise": "^0.3.1",
"inquirer": "^1.0.2",
"meow": "^3.7.0",
"pify": "^2.3.0",
"semver": "^5.3.0",
"tar.gz": "^1.0.3",
"tmp": "0.0.28"
},
"devDependencies": {
"ava": "^0.12.0",
"babel-cli": "^6.9.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-0": "^6.5.0",
"rimraf": "^2.5.2",
"xo": "^0.12.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"xo": {
"space": true,
"semicolon": false,
"esnext": true,
"rules": {
"babel/object-curly-spacing": 0
},
"ignore": [
"lib/**/*.js"
]
}
}