-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 959 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
43
{
"name": "uniqueid",
"description": "Generate sequential IDs, with optional prefix or suffix",
"version": "1.0.0",
"homepage": "https://github.com/jonschlinkert/uniqueid",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/uniqueid.git"
},
"bugs": {
"url": "https://github.com/jonschlinkert/uniqueid/issues"
},
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "standard",
"test-spec": "mocha -R spec",
"test-cov": "istanbul cover _mocha -- -R spec",
"test": "npm run lint && npm run test-cov"
},
"devDependencies": {
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"standard": "^6.0.8"
},
"keywords": [
"unique",
"uniqueid",
"sequence",
"id",
"numeric",
"prefix"
]
}