-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "yafa",
"version": "1.0.4",
"description": "Library that allows creation of simple wrappers for fetch.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir lib --ignore \"**/*.spec.js\"",
"test": "mocha \"src/**/*.spec.js\" \"examples/**/*.spec.js\" --compilers js:babel-core/register",
"cover": "istanbul cover -x \"src/**/*.spec.js\" _mocha \"src/**/*.spec.js\" -- --require babel-register",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src/**"
},
"keywords": [
"fetch",
"wrapper",
"ajax"
],
"author": "benjamin cavy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ptitFicus/YAFA.git"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"chai": "3.5.0",
"coveralls": "2.11.15",
"eslint": "3.14.0",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"http-status-mock": "1.0.1",
"isomorphic-fetch": "2.2.1",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.2.0",
"sinon": "1.17.7",
"sinon-chai": "2.8.0"
},
"dependencies": {}
}