-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "rutor-api",
"version": "0.1.0",
"description": "Rutor API",
"keywords": [],
"author": "Vladimir Kalinichev <wrumly@gmail.com>",
"license": "MIT",
"repository": "https://github.com/vkalinichev/rutor-api",
"bugs": {
"url": "https://github.com/vkalinichev/rutor-api/issues"
},
"homepage": "https://github.com/vkalinichev/rutor-api",
"main": "lib/index.js",
"dependencies": {
"ava": "^0.17.0",
"cheerio": "^0.22.0",
"request": "^2.79.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.8.1"
},
"scripts": {
"build": "babel src -d lib",
"prepublish": "npm run build && npm test",
"lint": " eslint lib/*.js",
"test": "ava"
},
"engines": {
"node": ">=4"
},
"ava": {
"files": [ "src/*.test.js" ],
"source": [
"src/*.js",
"!lib/**/*"
],
"concurrency": 5,
"failFast": true,
"tap": true,
"powerAssert": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}