UNPKG

2.12 kBJSONView Raw
1{
2 "name": "abigail",
3 "description": "lightweight, pluggable, a minimal task runner. using your npm-scripts.",
4 "version": "1.2.1",
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.0.2",
29 "abigail-plugin-watch": "^0.1.1",
30 "carrack": "^0.1.0",
31 "climb-lookup": "^1.0.0",
32 "minimist": "^1.2.0",
33 "npm-path": "^1.1.0"
34 },
35 "devDependencies": {
36 "babel-cli": "^6.6.5",
37 "babel-eslint": "^6.0.2",
38 "babel-plugin-add-module-exports": "^0.1.2",
39 "babel-plugin-espower": "^2.1.2",
40 "babel-preset-es2015": "^6.6.0",
41 "babel-preset-stage-1": "^6.5.0",
42 "babel-register": "^6.7.2",
43 "codeclimate-test-reporter": "^0.3.1",
44 "conventional-changelog-cli": "^1.1.1",
45 "eslint": "^2.6.0",
46 "eslint-config-airbnb": "^6.2.0",
47 "lodash.flattendeep": "^4.1.0",
48 "mocha": "^2.4.5",
49 "npm-run-all": "^1.5.3",
50 "nyc": "^6.1.1",
51 "power-assert": "^1.3.1"
52 },
53 "repository": {
54 "type": "git",
55 "url": "https://github.com/abigailjs/abigail.git"
56 },
57 "keywords": [
58 "abigail",
59 "npm-scripts",
60 "task",
61 "watch"
62 ],
63 "author": "59naga <i59naga@icloud.com> (http://berabou.me/)",
64 "license": "MIT",
65 "bugs": {
66 "url": "https://github.com/abigailjs/abigail/issues"
67 },
68 "homepage": "https://github.com/abigailjs/abigail#readme"
69}