-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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": "postgrest-client",
"version": "1.1.2",
"description": "Advanced client for the PostgREST API",
"author": "Caleb Meredith <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/calebmer/postgrest-client.git"
},
"keywords": [
"postgrest",
"api",
"client"
],
"main": "index.js",
"files": [
"index.js",
"dist"
],
"scripts": {
"test": "$(npm bin)/mocha -r babel-polyfill -r babel-register test/*.test.js",
"build": "$(npm bin)/babel lib -d dist/lib && MINIFY=false $(npm bin)/webpack && MINIFY=true $(npm bin)/webpack",
"lint": "$(npm bin)/standard lib/**/*.js",
"preversion": "git checkout master && npm run lint && npm test && npm run build && git add dist",
"postversion": "git push origin master --tags && npm publish"
},
"dependencies": {
"superagent": "^1.6.1"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.3.13",
"mocha": "^2.3.4",
"standard": "^5.4.1",
"webpack": "^1.12.9"
}
}