-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 774 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 774 Bytes
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
{
"name": "run-task",
"version": "1.3.0",
"description": "Simple-as-possible task runner",
"main": "index.js",
"engines": {
"node": ">=4.0"
},
"scripts": {
"format": "prettier --no-semi --single-quote --write {lib,test,.}/*.js",
"test": "node test/test"
},
"keywords": [
"build",
"cli",
"make",
"run",
"run-script",
"runner",
"script",
"task",
"task-runner"
],
"author": "Joseph Post <joe@jcpst.com> (http://jcpst.com)",
"repository": "jcpst/run-task",
"bugs": "https://github.com/jcpst/run-task/issues",
"license": "ISC",
"reveal": true,
"devDependencies": {
"pre-commit": "^1.1.3",
"prettier": "^1.5.3",
"strip-ansi": "^4.0.0"
},
"dependencies": {
"acorn": "^5.1.1"
}
}