-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.92 KB
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
{
"name": "@dx-groups/arthur-cli",
"version": "1.0.5",
"description": "The arthur command line utility",
"bin": {
"arthur": "./bin/arthur.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf lib && babel src --out-dir lib",
"pub": "npm publish --access public --registry=https://registry.npmjs.org",
"lint": "eslint src bin",
"lint-fix": "eslint --fix src bin",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dx-groups/athena.git"
},
"keywords": [
"arthur",
"cli"
],
"authors": [
"alcat2008 <ge_yangyang@126.com> (https://github.com/alcat2008)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dx-groups/athena/issues"
},
"homepage": "https://github.com/dx-groups/athena#readme",
"dependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-transform-runtime": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-react": "^7.0.0-beta.49",
"@babel/preset-stage-0": "^7.0.0-beta.49",
"@babel/runtime": "^7.0.0-beta.49",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "8.2.3",
"babel-jest": "22.4.3",
"babel-loader": "^8.0.0-beta.3",
"babel-preset-env": "^1.7.0",
"chalk": "2.4.1",
"commander": "^2.15.1",
"eslint": "4.19.1",
"eslint-loader": "2.0.0",
"fs-extra": "^6.0.1",
"inquirer": "^6.1.0",
"nunjucks": "^3.1.3",
"precommit-hook-eslint": "^3.0.0",
"through2": "^2.0.3",
"update-notifier": "^2.5.0",
"vinyl-fs": "^3.0.3"
},
"devDependencies": {
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"rimraf": "^2.6.2"
},
"files": [
"bin",
"boilerplate",
"lib",
"templates"
],
"pre-commit": [
"lint"
]
}