-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.38 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
{
"name": "@vigi-p/fbw",
"version": "2.1.11",
"description": "Watch directories for changes and run commands",
"main": "dist/index.js",
"icon": "logo.png",
"files": [
"/dist"
],
"homepage": "https://fbw.vigneshprasad.com/",
"repository": {
"type": "git",
"url": "https://github.com/ViGi-P/fuzz-barnacle-watch.git"
},
"author": "Vignesh Prasad <mail@vigneshprasad.com> (https://vigneshprasad.com/)",
"license": "MIT",
"typescript": {
"main": "./src/index.ts"
},
"bin": {
"fbw": "dist/index.js"
},
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/tsc -w",
"build": "rm -rf dist && ./node_modules/.bin/tsc && chmod +x dist/index.js",
"docs": "typedoc",
"test": "./dist/index.js -t=src -r='npm run test-one' -t=. -r='npm run test-two' -t=src -r='npm run test-three'",
"test-one": "serve test/serve -l 3000",
"test-two": "node test/node.js",
"test-three": "echo something",
"serve-docs": "serve docs"
},
"devDependencies": {
"@types/fb-watchman": "2.0.0",
"@types/node": "14.6.4",
"serve": "^13.0.2",
"typedoc": "^0.22.13",
"typescript": "^4.0.0"
},
"dependencies": {
"@caporal/core": "2.0.2",
"fb-watchman": "2.0.0"
},
"bugs": {
"url": "https://github.com/ViGi-P/fuzz-barnacle-watch/issues"
},
"keywords": [
"fbw",
"fuzz",
"barnacle",
"watch",
"project",
"runner",
"watcher",
"fb-watchman",
"watchman",
"nodejs"
]
}