forked from jimmythompson/halboy.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
42
43
{
"name": "@b-social/halboy",
"version": "0.10.0",
"description": "a hypermedia parser and navigator",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "standard",
"test": "mocha --require babel-polyfill --require babel-core/register --recursive \"test/**/*.spec.js\"",
"prepublish": "npm run build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"faker": "^4.1.0",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"standard": "^10.0.2"
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach"
],
"parser": "babel-eslint"
},
"dependencies": {
"axios": "^0.21.2",
"ramda": "^0.27.2",
"urijs": "^1.19.11"
}
}