-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 2.36 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
65
66
67
68
69
{
"name": "@ptkdev/json-token-replace",
"description": "JSON Token Replace: Replace token string {{name}} in json with values from another json where key is token {\"name\":\"Alex\"}",
"version": "1.2.2",
"main": "modules/jtr.js",
"author": "Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)",
"license": "MIT",
"license-docs": "CC BY 4.0",
"license-translations": "CC BY 4.0",
"license-images": "CC BY-NC 4.0",
"homepage": "https://json-token-replace.ptkdev.io",
"docs": "https://json-token-replace.ptkdev.io",
"repository": {
"type": "git",
"url": "https://github.com/ptkdev/json-token-replace.git"
},
"bugs": {
"url": "https://github.com/ptkdev/json-token-replace/issues"
},
"scripts": {
"example": "node examples/example.js",
"clean": "rm -rf node_modules package-lock.json && npm install",
"update": "rm -f package-lock.json && npm update",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"lint-fix": "eslint ./ --cache --ignore-pattern .gitignore --fix",
"git-set-upstream": "git remote add upstream git@github.com:ptkdev/json-token-replace.git && git fetch upstream",
"git-pull-upstream": "git pull upstream master && git pull upstream beta && git pull upstream nightly",
"git-pull": "git pull --recursive",
"git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"",
"npm-publish": "npm run clean && npm publish --access public",
"npm-publish-master": "git checkout master && npm publish",
"npm-publish-beta": "git checkout beta && npm publish --tag beta",
"npm-publish-nightly": "git checkout nightly && npm publish --tag nightly",
"docs": "git submodule update --recursive && markserv ./README.md",
"test": "jest",
"contributors-generate": "all-contributors generate"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run contributors-generate"
}
},
"keywords": [
"ptkdev",
"json",
"json-token-replace",
"replace",
"token-replace",
"json-replace",
"web-token-json",
"assoc-array-replace"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"eslint": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-jest": "latest",
"all-contributors-cli": "latest",
"pm2": "latest",
"json": "latest",
"jest": "latest",
"husky": "latest",
"yargs": "latest",
"markserv": "latest"
},
"contributors": []
}