-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 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
{
"name": "fresource",
"version": "0.8.0",
"description": "A full featured Rest API client around window.fetch to provide idiomatic interaction.",
"keywords": [
"rest",
"api",
"client",
"zero-dependency",
"tiny",
"micro",
"fetch",
"ajax",
"resource"
],
"main": "index.js",
"repository": "https://github.com/dbtek/fresource",
"author": "Ismail Demirbbilek <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"browserify": "^17.0.0",
"codecov": "^3.8.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-promise": "^6.1.1",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"standard": "^17.1.0",
"tap-spec": "^5.0.0",
"tape": "^5.7.2",
"uglifyify": "^5.0.2"
},
"scripts": {
"test": "nyc tape *.spec.js | tap-spec",
"upload-coverage": "codecov",
"build": "browserify index.js -o dist/fresource.js -g uglifyify --standalone fresource"
}
}