forked from jgable/grunt-phplint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 767 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 767 Bytes
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
{
"name": "grunt-phplint",
"version": "0.1.0",
"description": "A Grunt 4.0 task for running phplint on your php files",
"main": "Gruntfile.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/jgable/grunt-phplint.git"
},
"keywords": [
"gruntplugin",
"grunt",
"php",
"lint",
"phplint"
],
"author": "Jacob Gable <jacob.gable@gmail.com>",
"license": "MIT",
"devDependencies": {
"jshint": "^2.10.3",
"mocha": "^6.2.2",
"should": "~8.1.1"
},
"dependencies": {
"cache-swap": "~0.3.0",
"grunt": "^1.0.4"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "npm run lint-jshint",
"lint-jshint": "jshint 'tasks/' 'test/'"
}
}