-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "sails-hook-grunt",
"version": "5.0.0",
"description": "The Grunt hook from Sails core in v1.0 and up.",
"main": "index.js",
"scripts": {
"custom-tests": "node ./node_modules/mocha/bin/mocha && echo \"Custom tests all passed.\" && echo",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'",
"test": "npm run lint && npm run custom-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treelinehq/sails-hook-grunt.git"
},
"keywords": [
"grunt",
"assets",
"asset-pipeline",
"automation",
"hook",
"sails",
"sails-hook"
],
"author": "Mike McNeil",
"license": "MIT",
"bugs": {
"url": "http://sailsjs.com/bugs"
},
"homepage": "https://sailsjs.com",
"dependencies": {
"@sailshq/grunt-contrib-uglify": "^3.2.1",
"@sailshq/lodash": "^3.10.2",
"babel-core": "6.26.3",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"chalk": "1.1.3",
"grunt": "1.0.4",
"grunt-babel": "7.0.0",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "2.2.1",
"grunt-contrib-less": "1.3.0",
"grunt-contrib-watch": "1.1.0",
"grunt-hash": "0.5.0",
"grunt-sails-linker": "^0.10.1",
"grunt-sync": "0.8.1",
"include-all": "^4.0.3"
},
"sails": {
"isHook": true,
"hookName": "grunt"
},
"devDependencies": {
"eslint": "4.11.0",
"mocha": "3.0.2"
}
}