-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 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
60
61
62
63
64
{
"name": "piston-api-client",
"version": "2.0.1",
"description": "Client wrapper for the Piston Code Execution Engine API",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/aboqasem/js-piston-api-client",
"license": "MIT",
"keywords": [
"piston",
"client"
],
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/**/*.md,src/**/*.ts}\"",
"watch:build": "tsc -p tsconfig.json -w",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && pnpm i",
"prepare-release": "run-s reset-hard test version"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@aboqasem/prettierrc": "3.0.0",
"@types/node": "17.0.38",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"cspell": "6.5.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"standard-version": "9.5.0",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": "@aboqasem/prettierrc"
}