-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 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
43
{
"name": "sql-promise-helper",
"version": "0.0.1-pre03",
"description": "Web SQL promise helper",
"main": "dist/index.js",
"jsnext:main": "dist/index.es6.js",
"scripts": {
"build": "npm run distbuild",
"distbuild": "rm -rf dist && mkdir dist && coffee -p src/index.coffee > dist/index.es6.js && babel dist/index.es6.js > dist/index.js",
"distclean": "rm -rf dist cordovaTestApp/www/js/index.js cordovaTestApp/platforms cordovaTestApp/plugins webTest/js/index.js test.db node_modules",
"prepublish": "npm run distbuild",
"start": "npm run distbuild && rollup webTest/src/index.js -o webTest/js/index.js -f cjs",
"start2": "npm run distbuild && rollup cordovaTestApp/src/index.js -o cordovaTestApp/www/js/index.js -f cjs",
"test": "npm run distbuild && mocha --recursive"
},
"keywords": [
"web",
"sql",
"promise",
"batch"
],
"author": "Christopher J. Brody",
"license": "ISC OR MIT OR Apache-2.0",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"coffee-script": "^1.12.4",
"expect.js": "^0.3.1",
"mocha": "^3.2.0",
"rollup": "^0.36.4",
"websql": "^0.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brodybits/web-sql-batch-helper.git"
},
"bugs": {
"url": "https://github.com/brodybits/web-sql-batch-helper/issues"
},
"homepage": "https://github.com/brodybits/web-sql-batch-helper#readme"
}