-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 915 Bytes
/
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
{
"name": "fullslate",
"version": "0.1.0",
"description": "A simple JavaScript wrapper for the FullSlate API",
"keywords": [
"fullslate"
],
"author": "Kevin Chung <[email protected]>",
"contributors": [
"Kevin Chung <[email protected]>"
],
"homepage": "https://github.com/kchung/fullslate",
"bugs": {
"url": "https://github.com/kchung/fullslate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kchung/fullslate.git"
},
"engines": {
"node": ">= v0.12.0"
},
"devDependencies": {
"babel": "~5.8.21",
"chai": "~3.2.0",
"mocha": "~2.2.5"
},
"dependencies": {
"superagent": "^1.3.0"
},
"main": "lib/FullSlate",
"scripts": {
"build": "./node_modules/.bin/babel src/FullSlate.js --out-file lib/FullSlate.js",
"test": "./node_modules/.bin/mocha --timeout 10000 --compilers js:babel/register"
},
"license": "MIT"
}