-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "v",
"description": "Secure, Synchronized, Realtime, Cloud, Native JavaScript Variables & Events",
"version": "0.3.0",
"author": "Diego Rodríguez Baquero <diegorbaquero@gmail.com> (https://diegorbaquero.com)",
"browser": {
"deasync": false
},
"bugs": {
"url": "https://github.com/DiegoRBaquero/node-v/issues"
},
"dependencies": {
"debug": "^3.1.0",
"simple-websocket": "^7.0.0"
},
"devDependencies": {
"babili": "0.1.4",
"bogota": "^2.0.4",
"browserify": "^16.0.0",
"codecov": "^3.0.0",
"nyc": "^11.2.1",
"standard": "^11.0.0",
"tape": "^4.6.3"
},
"engineStrict": true,
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"app",
"application",
"cloud",
"config",
"constant",
"constants",
"hosted",
"online",
"realtime",
"state",
"sync",
"synchronized",
"var",
"variable",
"variables"
],
"license": "MIT",
"main": "index.js",
"optionalDependencies": {
"deasync": "^0.1.9"
},
"repository": {
"type": "git",
"url": "git@github.com:DiegoRBaquero/node-v.git"
},
"scripts": {
"browserify": "browserify -s V -e ./index.js > v.js && babili v.js > v.min.js",
"browserify-debug": "browserify -s V -e ./index.js > web/v.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublish": "npm run browserify",
"pretest": "standard",
"test": "nyc bogota"
},
"standard": {
"ignore": [
"v.js"
]
}
}