-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "@qetza/replacetokens",
"version": "1.8.1",
"description": "replace tokens in files",
"author": "Guillaume ROUCHON",
"license": "MIT",
"keywords": [
"replace",
"tokens",
"substitution",
"variables"
],
"homepage": "https://github.com/qetza/replacetokens#readme",
"bugs": {
"url": "https://github.com/qetza/replacetokens/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/qetza/replacetokens"
},
"funding": {
"type": "individual",
"url": "https://www.paypal.com/donate/?hosted_button_id=CCEAVYA8DUFD8"
},
"main": "dist/index.js",
"bin": {
"replacetokens": "dist/bin/index.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^16.11.39",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^4.8.4"
},
"dependencies": {
"fast-glob": "^3.3.2",
"iconv-lite": "^0.6.3",
"js-yaml": "^4.1.0",
"jschardet": "^3.0.0",
"yargs": "^17.7.2"
}
}