-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "forte-api",
"verson": "0.0.0-semantically-released",
"description": "A wrapper for the Powerchord Forte REST API",
"main": "./lib",
"scripts": {
"build": "babel -d lib/ src/",
"test": "mocha --compilers js:babel-register",
"cover": "babel-node ./node_modules/.bin/isparta cover _mocha",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/powerchordlabs/forte-api.git"
},
"keywords": [
"forte",
"api"
],
"author": "PowerChord, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/powerchordlabs/forte-api/issues"
},
"homepage": "https://github.com/powerchordlabs/forte-api#readme",
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.4.3",
"chai": "^3.4.1",
"eslint": "^2.11.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"nock": "^5.2.1",
"supertest": "^1.1.0",
"semantic-release": "^4.3.5"
},
"dependencies": {
"debug": "^2.2.0",
"extend-error": "0.0.2",
"superagent": "^1.6.1"
}
}