-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 903 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 903 Bytes
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
{
"name": "fstring",
"version": "0.0.3",
"description": "npm package to format value like python f-string.",
"main": "index.js",
"scripts": {
"run-test": "node ./test/test.js",
"re-test": "tsc -p ./test/tsconfig.json&&node ./test/test.js",
"re-build": "tsc -p ./src/tsconfig.json&&node ./test/test.js",
"re-build-all": "tsc -p ./src/tsconfig.json&&tsc -p ./test/tsconfig.json&&node ./test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LiuQixuan/FString.git"
},
"keywords": [
"format",
"format print",
"fstring",
"printf",
"python value format",
"value format"
],
"author": "LiuQixuan@Aiusoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/LiuQixuan/FString/issues"
},
"homepage": "https://github.com/LiuQixuan/FString#readme",
"devDependencies": {
"typescript": "^4.2.4"
}
}