-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 790 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 790 Bytes
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
{
"name": "@redbeardlab/simplesql",
"version": "1.0.8",
"description": "An SDK for SimpleSQL.redbeardlab.com",
"main": "dist/bundle.min.js",
"directories": {
"test": "test"
},
"dependencies": {
"@types/node": "^13.9.1",
"axios": "^0.19.2"
},
"devDependencies": {
"browserify": "^16.5.0",
"jest": "^25.1.0",
"typescript": "^3.8.3",
"uglify-js": "^3.8.0"
},
"scripts": {
"test": "jest --env=node",
"compile": "tsc",
"browserify": "browserify -s SimpleSQL dist/simplesql.js -o dist/bundle.js",
"minify": "uglifyjs dist/bundle.js --output dist/bundle.min.js && uglifyjs dist/simplesql.js -o dist/simplesql.min.js",
"build": "npm run compile && npm run browserify && npm run minify"
},
"author": "",
"license": "ISC"
}