-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "hermod-toolkit",
"version": "1.2.4",
"description": "Everything you need to write Hermod actions in JavaScript or TypeScript.",
"main": "dist/lib.js",
"module": "esm/lib.js",
"types": "dist/lib.d.ts",
"bin": {
"hermod-toolkit": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thomas-bouvier/hermod-javascript-toolkit"
},
"sideEffects": false,
"files": [
"dist",
"esm"
],
"scripts": {
"start": "npm run lint && npm run build",
"start:all": "pnpm recursive run start",
"build": "npm run clean && tsc && tsc -m commonjs --outDir dist && chmod a+x dist/cli.js && chmod a+x esm/cli.js",
"lint": "eslint \"src/**/*.ts\"",
"clean": "rimraf dist && rimraf esm",
"publish:all": "pnpm recursive exec -- pnpm publish"
},
"author": "Thomas Bouvier <contact@thomas-bouvier.io>",
"contributors": [
{
"name": "Julien Elbaz"
}
],
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/fetch-mock": "^7.3.2",
"@types/ini": "^1.3.30",
"@types/istanbul-lib-coverage": "^2.0.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest-haste-map": "^25.1.0",
"typescript": "^3.8.3"
},
"dependencies": {
"hermod-toolkit-cli": "^1.0.9",
"hermod-toolkit-runner": "^1.1.2",
"hermod-toolkit-tests": "^1.1.2",
"hermod-toolkit-utils": "^1.1.3",
"node-fetch": "^2.6.0",
"rimraf": "^3.0.2"
}
}