-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·29 lines (29 loc) · 893 Bytes
/
package.json
File metadata and controls
executable file
·29 lines (29 loc) · 893 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
{
"name": "upfront",
"description": "Tools for Upfront",
"version": "1.0.0",
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-cssmin": "^0.12.3",
"grunt-contrib-watch": "~0.6.1",
"grunt-sass": "~1.1.0",
"grunt-wp-i18n": "^0.4.9",
"jshint": "^2.9.2",
"load-grunt-tasks": "~1.0.0",
"mocha": "^2.3.3",
"underscore": "^1.8.3"
},
"jshintConfig": {
"esversion": 3,
"maxerr": 200,
"laxbreak": true,
"sub": true
},
"scripts": {
"test-php": "phpunit -c test/php/lib/phpunit.xml",
"test-js": "node_modules/.bin/mocha test/js",
"test": "npm run test-php && npm run test-js",
"jshint": "./node_modules/.bin/jshint ./ --exclude node_modules/,build/,scripts/chosen,scripts/file_upload,scripts/findandreplace,scripts/jquery,scripts/magnific-popup,scripts/realperson,scripts/spectrum"
}
}