-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
54 lines (54 loc) · 1.45 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": "velocityjs",
"description": "Velocity Template Language(VTL) for JavaScript",
"version": "2.0.6",
"license": "MIT",
"keywords": [
"velocity template"
],
"homepage": "http://git.shepherdwind.com/velocity.js/",
"repository": {
"type": "git",
"url": "git://github.com/shepherdwind/velocity.js.git"
},
"engines": {
"node": ">=0.8.0"
},
"main": "src/velocity.js",
"bin": {
"velocity": "bin/velocity"
},
"browser": {
"fs": false,
"path": false
},
"devDependencies": {
"amplify-appsync-simulator": "^2.3.5",
"auto-changelog": "^2.3.0",
"jison": ">=0.3",
"mocha": "^9.1.4",
"nyc": "^15.1.0",
"should": "^13.2.3"
},
"scripts": {
"test": "mocha test --require should",
"prepublishOnly": "PACKAGE_VERSION=$(node -p -e \"require('./package.json').version\") npm run tag",
"version": "npm run changelog && git add . && git commit -m 'chore: update history.md' && git push origin",
"tag": "if [[ $PACKAGE_VERSION != *\"beta\"* ]];then git tag v$PACKAGE_VERSION && git push --tags; fi",
"changelog": "auto-changelog -p -u",
"ci": "nyc mocha --require should"
},
"auto-changelog": {
"output": "History.md",
"hideCredit": true,
"startingVersion": "v2.0.3",
"ignoreCommitPattern": "(chore: update history.md)|(Merge branch .+)"
},
"spm": {
"main": "index.js",
"buildArgs": "--skip fs,path"
},
"dependencies": {
"debug": "^4.3.3"
}
}