forked from DrewML/es-comments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "es-comments",
"version": "1.0.1",
"description": "Parses single and multiline comments from an ECMAScript source file",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"bench": "node bench",
"test": "run-p jest:ci prettier:check",
"jest:ci": "jest -i",
"test:dev": "jest --watch",
"prettier": "prettier --write 'src/**/*.js'",
"prettier:check": "prettier-check 'src/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrewML/es-comments.git"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"ecmascript",
"javascript",
"comments",
"parse",
"parser"
],
"author": "Andrew Levine",
"license": "MIT",
"bugs": {
"url": "https://github.com/DrewML/es-comments/issues"
},
"homepage": "https://github.com/DrewML/es-comments#readme",
"devDependencies": {
"benchtable": "^0.1.0",
"comment-regex": "^1.0.0",
"extract-comments": "^0.10.1",
"get-comments": "^1.0.1",
"jest": "^22.1.2",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"prettier-check": "^2.0.0"
}
}