forked from jakobrosenberg/hookar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "hookar",
"version": "0.0.7",
"description": "small hook utility with support for hooks and pipelines",
"main": "./cjs/index.js",
"module": "./esm/index.mjs",
"directories": {
"test": "test"
},
"exports": {
".": {
"require": "./cjs/index.js",
"import": "./esm/index.mjs"
}
},
"types": "./typings/index.d.mts",
"scripts": {
"build": "babel esm -d cjs --presets @babel/preset-env -s && tsc",
"test": "probs test",
"test-watch": "nodemon --exec npm run test"
},
"babel": {
"plugins": [
[
"module-extension",
{
"mjs": "js"
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakobrosenberg/hook.git"
},
"keywords": [
"hooks",
"pipeline",
"taskrunner"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakobrosenberg/hook/issues"
},
"homepage": "https://github.com/jakobrosenberg/hook#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"babel-plugin-module-extension": "^0.1.3",
"nodemon": "^2.0.14",
"probs": "^1.4.0",
"typescript": "^4.6.3"
}
}