-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.24 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
{
"name": "fastreplacestring",
"version": "0.0.3",
"description": "Fast C(++) native replacement of a string in a file. Low startup time makes this great for build scripts.",
"main": "index.js",
"scripts": {
"postinstall": "g++ -Ofast -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"frs": "./.bin/fastreplacestring.exe",
"infer": "infer -- g++ -g -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"build": "g++ -Ofast -o ./.bin/fastreplacestring.exe ./fastreplacestring.cpp",
"test": "node ./tests/test.js && node ./tests/xtest.js",
"xtest": "node ./tests/xtest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IwanKaramazow/FastReplaceString.git"
},
"bin": {
"fastreplacestring.exe": "./.bin/fastreplacestring.exe"
},
"keywords": [
"replacestring", "fastreplacestring", "c", "native"
],
"exportedEnvVars": {
"PATH": {
"val": "./.bin",
"resolveAsRelativePath": true,
"global": true,
"globalCollisionBehavior": "joinPath"
}
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/IwanKaramazow/FastReplaceString/issues"
},
"homepage": "https://github.com/IwanKaramazow/FastReplaceString#readme"
}