-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
50
51
52
53
54
55
56
57
58
59
{
"name": "@node-oauth/formats",
"version": "1.0.0",
"description": "Validate ascii and unicode values.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "./node_modules/.bin/eslint index.js test",
"test": "mocha test",
"test:coverage": "NODE_ENV=test nyc --reporter=html --reporter=text ./node_modules/.bin/mocha 'test/*'",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"docs": "jsdoc2md index.js > API.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-oauth/formats.git"
},
"keywords": [
"unicode",
"validate",
"utf-8",
"ascii",
"vschar",
"uri",
"uchar",
"nqschar",
"nqchar",
"nchar"
],
"contributors": [
"Jan Küster <info@jankuester.com>",
"Jonah Werre <jonahwerre@gmail.com>",
"Michael Salinger <mjsalinger@gmail.com>",
"Nuno Sousa"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/node-oauth/formats/issues"
},
"homepage": "https://github.com/node-oauth/formats#readme",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.3.0",
"jsdoc-to-markdown": "^7.1.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0"
},
"files": [
"index.js",
"API.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}