-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·80 lines (80 loc) · 1.83 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"author": "Altus Aero LLC <[email protected]> (https://altusaero.com/)",
"bin": {
"bronze": "./lib/cli.js"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/altusaero/bronze/issues"
},
"contributors": [
"Daniel Bankhead <[email protected]> (https://danielbankhead.com/)"
],
"dependencies": {},
"description": "Collision-resistant ids for distributed systems",
"devDependencies": {
"coveralls": "^2.12.0",
"nsp": "^2.6.3",
"nyc": "^11.0.3",
"pre-commit": "^1.2.2",
"standard": "^10.0.2",
"tap-spec": "^4.1.1",
"tape": "^4.7.0",
"webpack": "^3.1.0"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=4.0.0"
},
"homepage": "https://github.com/altusaero/bronze",
"keywords": [
"bronze",
"uuid",
"uuid1",
"uuid4",
"timeuuid",
"guid",
"unique",
"id",
"ids",
"cassandra",
"browser",
"uwp"
],
"license": "Apache-2.0",
"main": "index.js",
"name": "bronze",
"nyc": {
"branches": 100,
"functions": 100,
"lines": 100,
"reporter": [
"html",
"text"
],
"statements": 100
},
"pre-commit": {
"run": [
"test"
],
"silent": false
},
"preferGlobal": false,
"private": false,
"repository": "altusaero/bronze",
"scripts": {
"build": "webpack index.js build/Release/bundle.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"nsp": "nsp check",
"postversion": "git push && git push --tags",
"preversion": "node dev/changelog-preversion",
"start": "node .",
"tape": "tape test/*.js | tap-spec",
"test": "npm run nsp && npm run lint && npm run build && nyc --check-coverage --show-process-tree npm run tape",
"version": "node dev/changelog-version"
},
"standard": {},
"version": "1.4.0"
}