UNPKG

1.27 kBJSONView Raw
1{
2 "name": "grunty",
3 "description": "Run any grunt plugin as NPM script without Gruntfile.js",
4 "version": "0.1.1",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bin": {
7 "grunty": "./bin/grunty.js"
8 },
9 "bugs": {
10 "url": "https://github.com/bahmutov/grunty/issues"
11 },
12 "contributors": [],
13 "dependencies": {
14 "check-more-types": "1.7.2",
15 "grunt": "0.4.5",
16 "lazy-ass": "0.5.8"
17 },
18 "devDependencies": {
19 "grunt-contrib-concat": "0.5.1",
20 "grunt-nice-package": "0.9.2",
21 "pre-git": "0.2.1"
22 },
23 "engines": {
24 "node": "> 0.10.0"
25 },
26 "homepage": "https://github.com/bahmutov/grunty",
27 "keywords": [
28 "grunt",
29 "cli",
30 "helper",
31 "npm",
32 "script",
33 "runner",
34 "plugin"
35 ],
36 "license": "MIT",
37 "main": "index.js",
38 "pre-commit": [
39 "npm test",
40 "npm version"
41 ],
42 "repository": {
43 "type": "git",
44 "url": "git@github.com:bahmutov/grunty.git"
45 },
46 "scripts": {
47 "test": "npm run concat; npm run concat2; npm run nice",
48 "concat": "grunty grunt-contrib-concat concat --src='test/[a|b].js' --dest=test/out.js --verbose",
49 "concat2": "grunty grunt-contrib-concat concat --src=test/a.js,test/b.js --dest=test/out.js",
50 "nice": "grunty grunt-nice-package nice-package"
51 }
52}