-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.21 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
{
"name": "stringifier",
"description": "Yet another stringify function",
"version": "2.1.1",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bugs": "https://github.com/twada/stringifier/issues",
"contributors": [
{
"name": "Stuart Cook",
"url": "https://github.com/Zalathar"
}
],
"dependencies": {
"traverse": "^0.6.6",
"type-name": "^2.0.1"
},
"devDependencies": {
"mocha": "^10.0.0",
"semistandard": "^17.0.0",
"snazzy": "^9.0.0"
},
"files": [
"CHANGELOG.md",
"README.md",
"index.js",
"strategies.js",
"package.json"
],
"homepage": "https://github.com/twada/stringifier",
"keywords": [
"stringify"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/twada/stringifier.git"
},
"scripts": {
"preversion": "npm test",
"fmt": "semistandard --fix index.js strategies.js test/*.js",
"lint": "semistandard --verbose index.js strategies.js test/*.js | snazzy",
"test": "mocha test"
},
"semistandard": {
"globals": [
"BigInt",
"describe",
"beforeEach",
"it"
]
}
}