-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 917 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
29
30
31
32
{
"name": "ant-orm",
"version": "1.0.4",
"description": "A simples, structured and secure indexedDB ORM",
"main": "index.js",
"scripts": {
"release": "npm run build && npm run minify && echo \"Success\"",
"build": "./node_modules/.bin/browserify index.js > ./dist/ANT.js",
"minify": "./node_modules/.bin/minify ./dist/ANT.js --out-file ./dist/ANT.min.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "./node_modules/.bin/http-server ./exemple"
},
"keywords": [
"sequelize",
"indexeddb",
"sql",
"library",
"wrapper",
"ant",
"orm",
"worker",
"query"
],
"author": "RZorzal",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-minify": "^0.3.0",
"browserify": "^15.2.0",
"http-server": "^0.11.1"
}
}