forked from rse/pure-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "pure-uuid",
"homepage": "http://github.com/rse/pure-uuid",
"description": "Pure JavaScript Based Universally Unique Identifier (UUID)",
"version": "1.6.4",
"license": "MIT",
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"keywords": [
"uuid", "identifier"
],
"repository": {
"type": "git",
"url": "git://github.com/rse/pure-uuid.git"
},
"bugs": {
"url": "http://github.com/rse/pure-uuid/issues"
},
"main": "./uuid.js",
"types": "./uuid.d.ts",
"devDependencies": {
"grunt": "1.6.1",
"grunt-cli": "1.4.3",
"grunt-contrib-jshint": "3.2.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-contrib-clean": "2.0.1",
"grunt-eslint": "24.2.0",
"grunt-mocha-test": "0.13.3",
"eslint": "8.44.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"chai": "4.3.7",
"mocha": "10.2.0"
},
"dependencies" : {
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"prepublishOnly": "grunt default",
"build": "grunt default"
}
}