-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
70 lines (70 loc) · 1.77 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
{
"name": "pokemonsay",
"description": "Pokemon version of cowsay with CLI and API.",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/dfrankland/pokemonsay.git"
},
"keywords": [
"pokemon",
"pokemonsay",
"cow",
"cowsay",
"fortune",
"xterm"
],
"author": "Dylan Frankland <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfrankland/pokemonsay/issues"
},
"homepage": "https://github.com/dfrankland/pokemonsay#readme",
"main": "./dist/index.js",
"bin": "./dist/cli-bootstrap.js",
"files": [
"dist/index.js",
"dist/cli.js",
"dist/cli-bootstrap.js",
"dist/pokemon.json"
],
"scripts": {
"scrape": "babel-node ./tools/scrape.js",
"build-pokemon": "rm -rf dist && mkdir dist && babel-node ./tools/build.js",
"build-cli": "babel ./src/cli.js -o ./dist/cli.js && cp ./src/cli-bootstrap.js ./dist",
"build-api": "babel ./src/index.js -o ./dist/index.js",
"build": "npm run build-pokemon && npm run build-cli && npm run build-api",
"start": "npm run build && node ./dist/cli.js"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"boxen": "^0.8.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-modern-node": "^3.2.0",
"babel-preset-stage-0": "^6.16.0",
"cheerio": "^0.22.0",
"image-xterm-loader": "^1.0.10",
"memory-fs": "^0.3.0",
"node-fetch": "^1.6.3",
"progress": "^1.1.8",
"require-from-string": "^1.2.1",
"webpack": "^1.13.3"
},
"babel": {
"plugins": [
"transform-runtime"
],
"presets": [
[
"modern-node",
{
"version": "0.12"
}
],
"stage-0"
]
}
}