-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 KB
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
50
51
52
53
54
55
56
57
{
"name": "secure-identifier",
"version": "1.0.1",
"description": "secure identifer for usernames",
"keywords": [
"RFC2142",
"TC39",
"identifier",
"mechanism",
"secure",
"security",
"unicode",
"username"
],
"homepage": "https://github.com/commenthol/secure-identifier#readme",
"bugs": {
"url": "https://github.com/commenthol/secure-identifier/issues"
},
"license": "MIT",
"author": "commenthol <commenthol@gmail.com>",
"main": "src",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/secure-identifier.git"
},
"scripts": {
"clean": "rimraf lib coverage .nyc_output",
"clean:all": "npm run clean && rimraf *.tgz lib node_modules",
"coverage": "nyc -r html -r text npm test",
"data": "node scripts/all.js",
"lint": "eslint '**/*.js'",
"prepare": "npm run clean && npm run lint && npm test",
"test": "mocha"
},
"dependencies": {},
"devDependencies": {
"asyncc-promise": "^1.1.1",
"debug": "^4.3.1",
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"punycode": "^2.1.1",
"regenerate": "^1.4.2",
"superagent": "^6.1.0"
},
"engines": {
"node": ">=6.0.0"
}
}