-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.46 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "abigail",
"description": "lightweight, pluggable, a minimal task runner. using your npm-scripts.",
"version": "1.9.5",
"main": "lib",
"files": [
"lib",
"abby"
],
"bin": {
"abby": "abby"
},
"scripts": {
"test": "mocha",
"lint": "eslint src test abby",
"cover": "npm-run-all cover:*",
"cover:test": "nyc --reporter=lcov --reporter=text mocha",
"cover:report": "npm-if TRAVIS \"codeclimate-test-reporter < coverage/lcov.info\"",
"build": "cross-env NODE_ENV=production rollup -c",
"postversion": "git push --follow-tags && conventional-github-releaser -p angular -r 0"
},
"dependencies": {
"abigail-plugin": "^0.1",
"abigail-plugin-env": "^0.0",
"abigail-plugin-exit": "^0.1",
"abigail-plugin-launch": "^0.1",
"abigail-plugin-log": "^0.3",
"abigail-plugin-parse": "^0.7",
"abigail-plugin-watch": "^0.2",
"source-map-support": "^0.5.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-power-assert": "^2.0.0",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"carrack": "0.3.0",
"chopsticks": "^0.6.0",
"climb-lookup": "^1.0.0",
"codeclimate-test-reporter": "^0.5.0",
"conventional-github-releaser": "^3.1.2",
"cross-env": "^5.2.0",
"deep-assign": "^2.0.0",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"npm-statement": "^0.0.0",
"nyc": "^12.0.2",
"pascal-case": "^2.0.0",
"power-assert": "^1.3.1",
"rollup": "0.26.3",
"rollup-plugin-babel": "2.4.0",
"rollup-plugin-commonjs": "2.2.1",
"rollup-plugin-json": "2.0.0",
"rollup-plugin-node-resolve": "1.5.0",
"rollup-plugin-uglify": "0.3.1",
"sinon": "^6.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/abigailjs/abigail.git"
},
"keywords": [
"abigail",
"npm-run-script",
"npm-scripts",
"task",
"watch",
"spawn",
"exec"
],
"author": "59naga <[email protected]> (http://berabou.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/abigailjs/abigail/issues"
},
"homepage": "https://github.com/abigailjs/abigail#readme"
}