-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 KB
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
{
"name": "@csquare/crossp",
"version": "0.2.0",
"description": "Generate commands from a single one using csquare syntax.",
"keywords": [
"csquare",
"compiler",
"crossp",
"command"
],
"homepage": "https://github.com/csquare-ai/crossp#readme",
"bugs": {
"email": "mathieu@csquare.ai",
"url": "https://github.com/owner/csquare-ai/issues"
},
"license": "MIT",
"author": "Clarisse Tarrou <clarisse@csquare.ai> (https://github.com/ArcticSubmarine)",
"contributors": [
"Mathieu Bour <mathieu@csquare.ai> (https://github.com/mathieu-bour)"
],
"files": [
"dist/**"
],
"main": "dist/cjs/index.js",
"browser": "dist/csj/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"repository": "github:csquare-ai/crossp",
"scripts": {
"prepare": "npx is-ci || husky install",
"prepublishOnly": "npm run build",
"format": "prettier --write **/*.{ts,tsx,json,yaml,yml,md}",
"format:check": "prettier --check **/*.{ts,tsx,yaml,yml,md}",
"test": "jest",
"test:cov": "jest --coverage",
"build": "run-p build:*",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json"
},
"devDependencies": {
"@csquare/prettier-config": "^1.1.2",
"@types/jest": "^26.0.23",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"standard-commit": "^4.2.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"engines": {
"node": ">=10"
},
"prettier": "@csquare/prettier-config",
"dependencies": {
"bignumber.js": "^9.0.1"
}
}