-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.38 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
52
53
54
55
56
57
58
{
"name": "xall",
"description": "Barely-there xhr",
"version": "0.0.1",
"author": "eldh",
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"ava": "~0.17.0",
"babel-core": "~6.21.0",
"babel-eslint": "~7.1.1",
"babel-preset-es2015": "~6.18.0",
"babel-preset-stage-2": "~6.18.0",
"babel-register": "~6.18.0",
"eslint": "~3.13.1",
"eslint-config-standard": "~6.2.1",
"eslint-plugin-ava": "~4.0.1",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-promise": "~3.4.0",
"eslint-plugin-standard": "~2.0.1",
"nock": "~9.0.2",
"w3c-xmlhttprequest": "~2.1.2"
},
"engines": {
"node": "~6.1.x",
"npm": "~3.9.x"
},
"homepage": "https://github.com/eldh/xall",
"keywords": [
"xhr",
"javascript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eldh/xall"
},
"bugs": {
"url": "https://github.com/eldh/xall/issues"
},
"ava": {
"require": [
"babel-register",
"./test/spec_init.js"
],
"babel": "inherit",
"files": [
"test/*_spec.js"
]
},
"scripts": {
"build": "rm -rf lib && mkdir lib && babel src/index.js -o lib/index.js && echo 'Built!'",
"preversion": "npm run build",
"test": "NODE_ENV=test ava",
"lint": "eslint ./ --max-warnings 0 --ext .jsx,.js",
"watch": "NODE_ENV=test ava --watch"
}
}