This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.52 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
{
"name": "key-value-store-anysql",
"version": "0.2.1",
"description": "Transactional key-value store on top of any SQL database",
"author": "Manuel Vila <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/object-layer/key-value-store-anysql"
},
"scripts": {
"build-example": "babel-node example/build.js",
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"release": "npm run lint && npm run compile && npm test && (git checkout --quiet master && test -z \"$(git status --porcelain)\" && npm version $npm_config_release_type && git push --follow-tags) || echo \"An error occurred (uncommitted changes?)\"",
"release-patch": "npm run release --release-type=patch",
"release-minor": "npm run release --release-type=minor",
"release-major": "npm run release --release-type=major",
"lint": "eslint .",
"test": "mocha --compilers js:babel-register,js:babel-polyfill"
},
"dependencies": {
"anysql": "^0.2.1",
"key-value-store-abstract": "^0.2.1",
"set-immediate-promise": "^1.0.6"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0",
"babel-plugin-transform-async-to-generator": "^6.7.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"eslint": "^2.5.3",
"eslint-config-next": "^0.1.12",
"mocha": "^2.4.5"
}
}