-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "comment-tag-extractor",
"version": "1.0.1",
"description": "Extract tags from docblock comments.",
"main": "lib/comment-tag-extractor.min.js",
"scripts": {
"build": "webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest",
"lint": "eslint src/",
"format": "prettier-eslint --print-width 120 --write \"src/**/*.js\"",
"prepare": "yarn build"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"eslint": "3.19.0",
"eslint-loader": "1.7.1",
"jest": "^21.2.1",
"prettier-eslint-cli": "^4.4.0",
"webpack": "3.1.0",
"yargs": "7.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/enbajo/comment-tag-extractor.git"
},
"keywords": [
"parser",
"comments",
"docblock",
"extract",
"tag",
"json",
"css",
"scss",
"js",
"c",
"code"
],
"author": "Endrit Bajo",
"license": "MIT",
"bugs": {
"url": "https://github.com/enbajo/comment-tag-extractor/issues"
},
"homepage": "https://github.com/enbajo/comment-tag-extractor",
"dependencies": {
"detect-newline": "^2.1.0"
}
}