-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 1.78 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
{
"name": "lexicon-cli",
"version": "1.1.2",
"description": "One simple dictionary CLI",
"main": "build/index.js",
"homepage": "https://github.com/RogerZZZZZ/lexicon-cli",
"scripts": {
"build": "npm run clean && webpack --config script/base.config.js -p",
"prepublish": "npm run build && echo '#!/usr/bin/env node' | cat - build/index.js > temp && mv temp build/index.js",
"clean": "rimraf lib packed",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "RogerZZZZZ (https://github.com/RogerZZZZZ)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.3.15",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^1.16.0",
"shebang-loader": "0.0.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.19.0",
"crawler": "^1.2.0",
"inquirer": "^6.2.0",
"json-file": "^0.1.0",
"ora": "^3.0.0",
"rimraf": "^2.6.2",
"typo-js": "^1.0.3"
},
"files": [
"build/*",
"assets/*",
"back/*",
"src/*",
"*.js",
"*.json",
"README.md"
],
"keywords": [
"dictionary",
"dict",
"cli"
],
"engines": {
"node": ">=6.0.0"
},
"bin": {
"dict": "./build/index.js",
"lexi": "./build/index.js"
}
}