-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 921 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
41
42
{
"name": "word-salad",
"version": "0.0.1",
"description": "Human-centric unique identifiers",
"main": "lib/wordSalad.js",
"bin": {
"mkWordSalad": "./bin/mkWordSalad.js"
},
"scripts": {
"test": "node_modules/.bin/_mocha",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha"
},
"engines": {
"node": ">= 5.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ewandennis/word-salad.git"
},
"keywords": [
"locator",
"identifier",
"id",
"uuid",
"human"
],
"author": "Ewan Dennis",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ewandennis/word-salad/issues"
},
"homepage": "https://github.com/ewandennis/word-salad#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"dependencies": {
"bignum": "^0.12.5",
"istanbul": "^0.4.5",
"q": "^1.4.1"
}
}