-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.7 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
66
67
{
"name": "js-cpa",
"version": "0.2.1",
"description": "Code pattern analysis for JS",
"main": "lib/index.js",
"bin": {
"js-cpa": "bin/js-cpa.js"
},
"scripts": {
"test": "jest",
"start": "webpack --config client/webpack.config.js --watch",
"build": "NODE_ENV=production webpack --config client/webpack.config.js",
"dev": "bash -c 'cat <(find ./public/*) <(find ./lib/*) | entr -s \"./bin/js-cpa.js -m -t 1 -R html test/fixtures/*.js\"'",
"prepublish": "yarn build"
},
"keywords": [
"code",
"repetition",
"pattern",
"duplication",
"javascript"
],
"author": "Vignesh Shanmugam <[email protected]> (https://vigneshh.in)",
"contributors": [
"Boopathi Rajaa",
"Vignesh Shanmugam"
],
"homepage": "https://github.com/vigneshshanmugam/js-cpa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vigneshshanmugam/js-cpa.git"
},
"dependencies": {
"@babel/parser": "^7.5.5",
"@babel/types": "^7.5.5",
"chalk": "^2.0.1",
"commander": "^3.0.1",
"ejs": "^2.5.7",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.1.5",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.6.0",
"classnames": "2.2.6",
"css-loader": "0.28.4",
"extract-text-webpack-plugin": "3.0.0",
"jest": "^20.0.4",
"normalize.css": "7.0.0",
"preact": "8.5.2",
"prismjs": "1.18.0",
"style-loader": "0.18.2",
"webpack": "3.4.1"
},
"files": [
"bin",
"lib",
"client/views",
"public/reporter.js",
"public/reporter.css",
"LICENSE",
"README.md"
]
}