-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 890 Bytes
/
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
{
"name": "mica",
"version": "0.1.0",
"description": "Testing framework CLI",
"main": "entrypoint.js",
"engines": {
"node": "5"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "babel --optional runtime -d dist/ app/",
"local": "npm test; npm run build; npm install -g"
},
"author": "Max McKenzie max@lemondigits.com",
"license": "MIT",
"bin": {
"mica": "./dist/index.js"
},
"dependencies": {
"babel-register": "^6.9.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"mocha": "^2.5.3",
"shelljs": "^0.7.0",
"simple-git": "^1.37.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1"
}
}