forked from deprecate/metal-soy-critic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.43 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
{
"name": "metal-soy-critic",
"version": "2.3.0",
"description": "A metal-soy code validation utility.",
"engines": {
"node": ">=6.4.0"
},
"repository": "https://github.com/metal/metal-soy-critic",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"compile": "tsc",
"jest": "jest",
"lint": "tslint src/**/*.ts",
"prepublish": "npm run compile",
"test": "npm run compile && jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.ts"
]
},
"bin": {
"mcritic": "./lib/index.js"
},
"keywords": [
"metal",
"metal-soy"
],
"author": "Mike T. Hadley",
"license": "MIT",
"dependencies": {
"babel-traverse": "^6.23.1",
"babel-types": "^6.23.0",
"babylon": "^6.16.1",
"chalk": "^1.1.3",
"change-case": "^3.0.1",
"commander": "^2.9.0",
"glob": "^7.1.1",
"parsimmon": "^1.2.0",
"soyparser": "^1.0.0"
},
"devDependencies": {
"@types/babel-traverse": "^6.7.16",
"@types/babel-types": "^6.7.14",
"@types/babylon": "^6.16.0",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.3.31",
"@types/glob": "^5.0.30",
"@types/jest": "^19.2.2",
"@types/node": "^7.0.8",
"@types/parsimmon": "^1.0.2",
"jest": "^19.0.2",
"tslint": "^5.5.0",
"typescript": "^2.3.2"
}
}