-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.38 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
60
61
62
63
64
65
{
"name": "espurify",
"version": "3.2.0",
"description": "Clone AST without extra properties",
"keywords": [
"ast",
"estree",
"ecmascript",
"es6"
],
"homepage": "https://github.com/estools/espurify",
"bugs": "https://github.com/estools/espurify/issues",
"repository": {
"type": "git",
"url": "git://github.com/estools/espurify.git"
},
"license": "MIT",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"contributors": [
{
"name": "Renée Kooi",
"url": "https://github.com/goto-bus-stop"
},
{
"name": "Andreas Lind",
"url": "https://github.com/papandreou"
}
],
"type": "commonjs",
"main": "index.js",
"files": [
"CHANGELOG.md",
"MIT-LICENSE.txt",
"README.md",
"index.js",
"lib",
"package.json"
],
"scripts": {
"preversion": "npm test",
"lint": "semistandard --verbose index.js lib test | snazzy",
"fmt": "semistandard --fix index.js lib test",
"test": "npm run lint && node --test"
},
"devDependencies": {
"acorn": "^8.0.0",
"babel-types": "^6.3.20",
"babylon": "^6.3.20",
"esprima": "^4.0.0",
"estraverse": "^5.0.0",
"semistandard": "^17.0.0",
"snazzy": "^9.0.0"
},
"semistandard": {
"ignore": [
"/build/",
"/bench/",
"**/*.jsx"
]
}
}