-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "@autolotto/bunnyhop",
"version": "2.4.4",
"main": "build/index.js",
"license": "MIT",
"repository": "https://github.com/autolotto/bunnyhop",
"scripts": {
"release": "npm run build:clean && npm run build && np",
"build": "babel src -s -d build --ignore src/example,src/**/*.test.js",
"build:clean": "rm -rf build",
"dev": "watch 'npm run build' src",
"test": "ava -v -T 8000",
"test:watch": "npm run test -- -w"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6.5.0"
}
}
]
]
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"dependencies": {
"amqplib": "^0.5.2",
"death": "^1.1.0",
"debug": "^2.6.8",
"lodash": "^4.17.10",
"uuid": "^3.0.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.5.2",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"np": "^2.20.1",
"testdouble": "^3.2.6",
"watch": "^1.0.2"
}
}