-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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": "versync",
"version": "5.0.0",
"versionedSources": "index.js",
"description": "Utility that keeps version numbers in sync between files.",
"keywords": [
"semver",
"version",
"sync",
"TypeScript"
],
"contributors": [
{
"name": "Louis-Dominique Dubeau",
"email": "[email protected]"
},
{
"name": "Alex Ciminian",
"url": "http://improve.ro/"
}
],
"license": "MIT",
"engines": {
"node": ">=v12.22.12"
},
"repository": {
"type": "git",
"url": "http://github.com/lddubeau/versync.git"
},
"main": "./index.js",
"dependencies": {
"argparse": "^2.0.1",
"colors": "^1.4.0",
"esprima": "^4.0.1",
"fs-extra": "^10.1.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-angular": "^16.3.0",
"chai": "^4.5.0",
"conventional-changelog-cli": "^2.2.2",
"del": "^6.1.1",
"eslint": "^7.32.0",
"eslint-config-lddubeau-base": "^6.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"expect-rejection": "^2.0.0",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"mockery": "^2.1.0",
"typescript": ">=1.8.10 <5"
},
"bin": {
"versync": "./bin/versync"
},
"scripts": {
"test": "mocha",
"posttest": "npm run lint",
"lint": "eslint *.js bin/versync test/*.js",
"version": "./bin/versync -b sync -a && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"optionalDependencies": {
"typescript": ">=1.8.10 <5"
}
}