-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "nss-run",
"version": "0.4.0",
"description": "nss-run (not so simple run) is a very simplistic build tool.",
"keywords": [
"task",
"cli",
"run",
"async",
"make",
"build",
"system",
"tool",
"buildtool"
],
"main": "lib/index.js",
"author": "Florian Krauthan <mail@fkrauthan.de>",
"license": "MIT",
"bin": {
"nss-run": "bin/nss-run.js",
"nrun": "bin/nss-run.js"
},
"scripts": {
"start": "node bin/nss-run.js",
"prestart": "yarn run build",
"build": "babel src/ --out-dir lib/"
},
"repository": "github:fkrauthan/nss-run",
"bugs": {
"url": "https://github.com/fkrauthan/nss-run/issues"
},
"homepage": "https://fkrauthan.github.io/nss-run/",
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jsdoc": "^3.6.10"
}
}