-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "run-simple",
"version": "0.2.3",
"description": "A simple, enhanced replacement for `npm run-script <command> [-- <args>...]`",
"main": "dist/lib/runner.js",
"files": [
"dist"
],
"bin": {
"run": "dist/run"
},
"scripts": {
"preversion": "run test",
"version": "run dist && git add -A dist",
"postversion": "git push && git push --tags"
},
"keywords": [
"ctrl-c",
"npm",
"npm run",
"npm run-script",
"run",
"run-script",
"sigint"
],
"repository": "https://github.com/mikol/run",
"author": {
"name": "Mikol Graves",
"email": "mikol@thinbox.org",
"url": "https://mikol.github.io/"
},
"license": "CC-BY-SA-4.0",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babelrc-rollup": "^3.0.0",
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"chokidar": "^2.0.2",
"mocha": "^5.0.0",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-cleanup": "^2.0.0",
"sinon": "^4.4.2"
}
}