-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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": "@eoscostarica/eosjs-camel-api",
"version": "0.2.0",
"description": "EOS API module that returns camelcase objects. Read only.",
"main": "index.js",
"scripts": {
"lint": "standard --fix | snazzy",
"test": "echo 'no tests yet!'",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{js}": [
"standard --fix | snazzy",
"git add"
]
},
"author": "gaboesquivel.com - eoscostarica.io",
"license": "MIT",
"dependencies": {
"camelcase-keys": "^4.2.0",
"eosjs-api": "^7.0.0",
"snakecase-keys": "^1.2.0"
},
"devDependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettyjson": "^1.2.1",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eoscostarica/eosjs-camel-api.git"
},
"bugs": {
"url": "https://github.com/eoscostarica/eosjs-camel-api/issues"
},
"homepage": "https://github.com/eoscostarica/eosjs-camel-api#readme"
}