-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "@corelate/cuckoo",
"version": "0.15.0",
"description": "",
"main": "lib/index.js",
"private": "true",
"scripts": {
"clean": "rimraf lib",
"test": "ava --watch | tap-difflet",
"build": "babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"prepublish": "npm run clean && npm run build"
},
"author": "",
"license": "MIT",
"ava": {
"source": "src/**/*.js",
"files": "test/**/*.js",
"require": "babel-register",
"babel": "inherit",
"tap": true
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chokidar": "^1.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"rimraf": "^2.5.2",
"tap-difflet": "^0.4.0"
},
"dependencies": {
"@corelate/create-error": "git+https://[email protected]/nomadicbits/create-error.git",
"check-types": "^7.0.0",
"lodash": "^4.12.0"
}
}