-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "oop-analyzer",
"version": "0.1.0",
"description": "tool to analyze and improve code by oop standards",
"main": "index.js",
"scripts": {
"build": "yarn run rimraf build && tsc",
"test": "mocha build/test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oakfield/oop-analyzer.git"
},
"author": "Michael Smith",
"license": "ISC",
"bugs": {
"url": "https://github.com/oakfield/oop-analyzer/issues"
},
"homepage": "https://github.com/oakfield/oop-analyzer#readme",
"devDependencies": {
"@types/acorn": "^4.0.5",
"@types/chai": "^4.1.3",
"@types/lodash": "^4.14.0",
"@types/mocha": "^5.2.0",
"@types/node": "^10.3.3",
"@types/yargs": "^12.0.10",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"rimraf": "^2.6.0",
"rollup": "^0.63.0",
"ts-lint": "^4.5.0",
"ts-node": "^8.0.0",
"typescript-tslint-plugin": "^0.3.1"
},
"dependencies": {
"acorn": "^6.1.1",
"acorn-walk": "^6.1.1",
"amd-loader": "^0.0.8",
"lodash": "^4.17.0",
"typescript": "^3.4.2",
"yargs": "^13.2.0"
}
}