-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "jscombguid",
"version": "1.0.8",
"description": "JavaScript module used to create comb guids.",
"main": "lib/index.js",
"types": "lib/index",
"scripts": {
"clean": "rimraf lib",
"test": "nyc mocha --require babel-core/register",
"lint": "eslint src/**",
"build": "npm run clean && npm run lint && npm run test && babel ./src -d ./lib",
"upgrade-interactive": "npm-check --update",
"prepublish": "npm run build",
"trypublish": "npm publish || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanande/JsCombGuid.git"
},
"keywords": [
"guid",
"combguid",
"guid generator"
],
"author": "Ryan Anderson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanande/JsCombGuid/issues"
},
"homepage": "http://ryanande.github.io/JsCombGuid/",
"dependencies": {
"moment": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^8.26.0",
"mocha": "^10.1.0",
"npm-check": "^6.0.1",
"nyc": "^15.1.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}