-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
{
"name": "angular-enforcer",
"version": "0.2.0",
"description": "Command line script to lint style rules in Angular templates and automatically correct them",
"main": "dist/angular-enforcer.min.js",
"scripts": {
"dev": "./node_modules/.bin/babel src -w --stage 0 --source-maps --out-dir ./dist",
"build": "./node_modules/.bin/babel src --out-dir ./dist --no-comments --stage 0",
"clean": "rm -rf ./dist/*"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/HourlyNerd/angular-enforcer.git"
},
"bin": {
"enforce": "./dist/cli.js"
},
"preferGlobal": "true",
"keywords": [
"angular",
"html",
"linter",
"linting",
"lint",
"beautifier",
"formatter"
],
"author": "Kaelan Cooter",
"license": "MIT",
"bugs": {
"url": "https://github.com/HourlyNerd/angular-enforcer/issues"
},
"homepage": "https://github.com/HourlyNerd/angular-enforcer#readme",
"devDependencies": {
"babel": "5.8.29",
"colors": "^1.1.2",
"diff": "^2.2.1",
"eslint": "^1.9.0",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.1.1",
"uglify-js": "^2.6.1"
},
"dependencies": {
"glob": "^6.0.1",
"htmlparser2": "^3.8.3",
"minimist": "^1.2.0",
"lodash": "^3.10.1",
"string.prototype.repeat": "^0.2.0",
"wordwrap": "^1.0.0",
"yargs": "^3.30.0"
}
}