-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "@fal-works/s-l-t-r",
"description": "Something like a task runner.",
"version": "0.5.0",
"author": "FAL",
"bugs": {
"url": "https://github.com/fal-works/s-l-t-r/issues"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typedoc": "0.20.0-beta.27",
"typescript": "^4.1.3"
},
"directories": {
"lib": "lib"
},
"files": [
"lib",
"types"
],
"homepage": "https://github.com/fal-works/s-l-t-r#readme",
"keywords": [
"task runner"
],
"license": "MIT",
"main": "lib/index.js",
"private": false,
"repository": "https://github.com/fal-works/s-l-t-r",
"scripts": {
"build": "yarn clean && tsc --skipLibCheck && yarn format",
"clean": "rimraf lib/* & rimraf types/*",
"docs": "node test/dogfooding.js docs",
"dogfood": "node test/dogfooding.js",
"format": "yarn format:lib & yarn format:types",
"format:lib": "eslint --fix lib/**/*.js",
"format:types": "eslint --fix types/**/*.d.ts",
"test": "node test/echo-test.js"
},
"types": "types/index.d.ts"
}