UNPKG

1.5 kBJSONView Raw
1{
2 "name": "grunty",
3 "description": "Run any grunt plugin as NPM script without Gruntfile.js",
4 "version": "0.2.0",
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 "debug": "2.2.0",
16 "grunt": "0.4.5",
17 "lazy-ass": "0.5.8"
18 },
19 "devDependencies": {
20 "grunt-contrib-concat": "0.5.1",
21 "grunt-nice-package": "0.9.2",
22 "pre-git": "0.2.1"
23 },
24 "engines": {
25 "node": "> 0.10.0"
26 },
27 "homepage": "https://github.com/bahmutov/grunty",
28 "keywords": [
29 "grunt",
30 "cli",
31 "helper",
32 "npm",
33 "script",
34 "runner",
35 "plugin"
36 ],
37 "license": "MIT",
38 "main": "index.js",
39 "pre-commit": [
40 "npm test",
41 "npm version"
42 ],
43 "repository": {
44 "type": "git",
45 "url": "git@github.com:bahmutov/grunty.git"
46 },
47 "scripts": {
48 "test": "npm run concat; npm run concat2; npm run nice; npm run concat-config; npm run concat-js-config",
49 "concat": "grunty grunt-contrib-concat concat --src='test/[a|b].js' --dest=test/out.js --verbose",
50 "concat2": "grunty grunt-contrib-concat concat --src=test/a.js,test/b.js --dest=test/out.js",
51 "concat-config": "grunty grunt-contrib-concat concat test/concat.json",
52 "concat-js-config": "grunty grunt-contrib-concat concat test/concat.js",
53 "nice": "grunty grunt-nice-package nice-package"
54 }
55}