-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1014 Bytes
/
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
{
"name": "datastore",
"version": "1.8.3",
"description": "",
"main": "index.js",
"dependencies": {
"bluff": "^0.9.2",
"emitter-component": "^1.1.1"
},
"devDependencies": {
"browserify": "^13.0.0",
"tape": "^4.6.0",
"uglifyify": "^3.0.4"
},
"scripts": {
"test": "tape test/*.js",
"test:sauce": "zuul -- test/*.js",
"build": "npm run build:dev && npm run build:prod",
"build:dev": "browserify index.js --debug --standalone datastore > dist/datastore.js",
"build:prod": "browserify -g uglifyify index.js --standalone datastore > dist/datastore.min.js"
},
"repository": {
"type": "git",
"url": "git://github.com/bredele/datastore.git"
},
"keywords": [
"model",
"collections",
"store",
"data",
"localStorage",
"data",
"object"
],
"author": "Olivier Wietrich <[email protected]> (http://github.com/bredele)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bredele/datastore/issues"
}
}