UNPKG

2.17 kBJSONView Raw
1{
2 "name": "abigail",
3 "description": "lightweight, pluggable, a minimal task runner. using your npm-scripts.",
4 "version": "1.3.2",
5 "main": "lib",
6 "files": [
7 "lib",
8 "abby"
9 ],
10 "bin": {
11 "abby": "abby"
12 },
13 "scripts": {
14 "test": "mocha --compilers js:babel-register",
15 "lint": "eslint src test abby",
16 "cover": "npm-run-all cover:*",
17 "cover:test": "nyc --reporter=lcov --reporter=text npm test",
18 "cover:report": "node -e \"if(process.env.TRAVIS){}else{process.exit(1)}\" && codeclimate-test-reporter < coverage/lcov.info || echo skip coverage report",
19 "build": "NODE_ENV=production npm-run-all build:*",
20 "build:compile": "babel -V && babel src --out-dir lib --source-maps",
21 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
22 },
23 "dependencies": {
24 "abigail-plugin": "^0.1.2",
25 "abigail-plugin-exit": "^0.1.0",
26 "abigail-plugin-launch": "^0.0.5",
27 "abigail-plugin-log": "^0.1.1",
28 "abigail-plugin-parse": "^0.1.0",
29 "abigail-plugin-watch": "^0.2.0",
30 "carrack": "^0.1.0",
31 "climb-lookup": "^1.0.0",
32 "deep-assign": "^2.0.0",
33 "minimist": "^1.2.0",
34 "npm-path": "^1.1.0"
35 },
36 "devDependencies": {
37 "babel-cli": "^6.6.5",
38 "babel-eslint": "^6.0.2",
39 "babel-plugin-add-module-exports": "^0.1.2",
40 "babel-plugin-espower": "^2.1.2",
41 "babel-preset-es2015": "^6.6.0",
42 "babel-preset-stage-1": "^6.5.0",
43 "babel-register": "^6.7.2",
44 "codeclimate-test-reporter": "^0.3.1",
45 "conventional-changelog-cli": "^1.1.1",
46 "eslint": "^2.6.0",
47 "eslint-config-airbnb": "^6.2.0",
48 "lodash.flattendeep": "^4.1.0",
49 "mocha": "^2.4.5",
50 "npm-run-all": "^1.5.3",
51 "nyc": "^6.1.1",
52 "power-assert": "^1.3.1",
53 "sinon": "^1.17.3"
54 },
55 "repository": {
56 "type": "git",
57 "url": "https://github.com/abigailjs/abigail.git"
58 },
59 "keywords": [
60 "abigail",
61 "npm-scripts",
62 "task",
63 "watch"
64 ],
65 "author": "59naga <i59naga@icloud.com> (http://berabou.me/)",
66 "license": "MIT",
67 "bugs": {
68 "url": "https://github.com/abigailjs/abigail/issues"
69 },
70 "homepage": "https://github.com/abigailjs/abigail#readme"
71}