forked from siddharthkp/auto-install
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "auto-install",
"version": "1.7.5",
"description": "Auto installs dependencies as you code",
"keywords": "auto, dependencies, install, package, watch",
"homepage": "https://github.com/siddharthkp/auto-install#readme",
"repository": "siddharthkp/auto-install",
"license": "MIT",
"main": "src/index.js",
"bin": "lib/index.js",
"author": "siddharthkp",
"scripts": {
"lint": "eslint src",
"build": "babel src -d lib && babel test/src -d test/lib",
"run-tests": "cd example && mocha ../test/lib",
"test": "npm run build && npm run run-tests"
},
"engines": {
"node": ">= 4.4.5"
},
"dependencies": {
"chokidar": "2.0.0",
"colors": "1.1.2",
"detective": "5.0.2",
"detective-es6": "1.2.0",
"glob": "7.1.0",
"is-builtin-module": "1.0.0",
"log-symbols": "1.0.2",
"ora": "0.3.0",
"package-json": "2.4.0",
"yargs": "6.3.0"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-preset-es2015": "6.14.0",
"chai": "3.5.0",
"eslint": "4.18.2",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"mocha": "3.1.2"
},
"babel": {
"presets": [
"es2015"
]
}
}