This repository was archived by the owner on Oct 5, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.7 KB
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
{
"name": "@tmware/variable-parser",
"version": "1.2.2",
"description": "Parse in-string variables",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./index.esm.mjs"
},
"files": [
"dist",
"typings",
"index.esm.js"
],
"scripts": {
"build": "yarn run clean && tsc -p ./",
"clean": "rimraf dist",
"test": "jest --config jestconfig.json",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore src/",
"lint:fix": "yarn run lint --fix",
"preversion": "yarn run build && yarn test",
"prepublishOnly": "yarn run build && yarn test",
"postversion": "git push && git push --tags",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/TMWare/variable-parser.git"
},
"author": "TMUniversal <me@tmuniversal.eu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TMWare/variable-parser/issues"
},
"homepage": "https://github.com/TMWare/variable-parser#readme",
"dependencies": {},
"devDependencies": {
"@tmuniversal/ts": "^1.2.1",
"@tmware/eslint-config-typescript": "^1.0.8",
"@tmware/prettier-config": "^1.0.3",
"@tmware/semantic-release-npm-github-publish": "^1.4.4",
"@types/node": "^16.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^7.0.1",
"jest": "^27.0.6",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"typescript": "^4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@tmware/prettier-config"
}