-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
56
{
"name": "pnut-butter",
"version": "0.22.1",
"description": "pnut-butter.js – A modern, promise based wrapper library for the pnut.io API.",
"main": "dist/pnut.js",
"bin": "bin/pnut",
"scripts": {
"test": "node_modules/mocha/bin/mocha",
"test:watch": "mocha -w -R min",
"build": "babel lib --presets babel-preset-es2015 --out-dir dist",
"generate_docs": "jsdoc -d ./docs -t ./node_modules/docdash -R README.md lib/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaiwood/pnut-butter.git"
},
"author": {
"name": "Kai Wood",
"email": "kwood@kwd.io",
"url": "https://kwd.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kaiwood/pnut-butter/issues",
"email": "kwood@kwd.io"
},
"homepage": "https://github.com/kaiwood/pnut-butter#readme",
"keywords": [
"pnut",
"pnut.io",
"library",
"api"
],
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.4",
"marked": "^0.8.2",
"mocha": "^5.2.0",
"nock": "^12.0.3"
},
"dependencies": {
"append-query": "^2.1.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"commander": "^2.20.3",
"death": "^1.1.0",
"docdash": "^0.4.0",
"es6-promise": "^4.2.8",
"faye-websocket": "^0.11.3",
"form-data": "^2.5.1",
"isomorphic-fetch": "^2.2.1",
"snake-case": "2.1.0"
}
}