-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 790 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 790 Bytes
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
{
"name": "timer-uid",
"version": "1.2.0",
"description": "timestamp unique identifier generator",
"main": "index.js",
"scripts": {
"test": "mocha test",
"build": "browserify web.js -o dist/timer-uid.bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wrenth04/node-timer-uid.git"
},
"keywords": [
"uid",
"uuid",
"timestamp"
],
"author": "Phil Huang",
"license": "MIT",
"bugs": {
"url": "https://github.com/wrenth04/node-timer-uid/issues"
},
"homepage": "https://github.com/wrenth04/node-timer-uid#readme",
"devDependencies": {
"cz-conventional-changelog": "^1.2.0",
"should": "^8.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}