-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.33 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
{
"private": true,
"scripts": {
"clean": "make clean",
"build": "make build",
"watch": "make watch",
"lint": "make lint",
"lint:fix": "make lint-fix",
"bootstrap": "lerna bootstrap",
"test": "mocha runtests",
"publish": "make publish"
},
"engines": {
"node": ">=4"
},
"keywords": [
"inquirer",
"cli",
"fuzzy"
],
"author": "George Pittarelli",
"license": "MIT",
"babel": {
"presets": [
"latest",
"stage-3"
],
"plugins": [
"add-module-exports",
"transform-flow-strip-types"
]
},
"eslintConfig": {
"extends": "babel",
"rules": {
"quotes": [
"error",
"single"
],
"object-curly-spacing": [
"error",
"never"
]
},
"env": {
"node": true,
"mocha": true
}
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-eslint": "7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-flow-strip-types": "6.21.0",
"babel-preset-latest": "6.16.0",
"babel-preset-stage-3": "6.17.0",
"chai": "3.5.0",
"eslint": "3.14.0",
"eslint-config-babel": "6.0.0",
"eslint-plugin-flowtype": "2.30.0",
"flow-bin": "0.38.0",
"glob": "7.1.1",
"lerna": "2.0.0-beta.34",
"mocha": "3.2.0",
"rimraf": "2.5.4"
}
}