-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.85 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
70
{
"name": "skedify-uri-encoding",
"version": "0.0.0-development.0",
"description": "Encoding of JSON object",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/skedify-uri-encoding.esm.js",
"files": [
"dist",
"src"
],
"peerDependencies": {},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --format cjs,esm,umd --name SkedifyUriEncoding",
"test": "npm run test:client && npm run test:src --",
"test:src": "tsdx test",
"test:client": "node client/test/run.js ./client/test/*-test.js",
"tdd": "npm run test -- --watch",
"lint": "tsdx lint client",
"format": "npm run lint -- --fix",
"prepare": "husky install && npm run build",
"check-coverage": "npm run test -- --ci --coverage",
"commit": "git-cz",
"commit:lint": "commitlint --edit \"$1\"",
"semantic-release": "semantic-release"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"homepage": "https://github.com/skedify/skedify-uri-encoding",
"repository": {
"type": "git",
"url": "https://github.com/skedify/skedify-uri-encoding.git"
},
"author": {
"name": "Skedify",
"email": "[email protected]",
"url": "https://www.skedify.me"
},
"keywords": [
"skedify",
"uri-encoding"
],
"dependencies": {
"json-stable-stringify": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-replace": "^2.4.2",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"semantic-release": "^17.4.3",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}