This repository has been archived by the owner on Mar 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.63 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@avolantis/ts-guid",
"version": "0.1.0-preview.3",
"keywords": [
"guid",
"uuid",
"unique",
"uniqueidentifier",
"id",
"identifier",
"uuid-generator"
],
"description": "TypeScript implementation of GUIDs (v4 UUIDs)",
"homepage": "https://github.com/avolantis/ts-guid#readme",
"repository": "https://github.com/avolantis/ts-guid",
"bugs": "https://github.com/avolantis/ts-guid/issues",
"author": "Avolantis <[email protected]> (https://avolantis.net)",
"license": "MIT",
"main": "dist/ts-guid.es6.cjs.js",
"module": "dist/ts-guid.es6.esm.js",
"browser": "dist/ts-guid.es6.iife.js",
"unpkg": "dist/ts-guid.es6.umd.js",
"types": "types/index.d.ts",
"files": [
"dist",
"src",
"types"
],
"scripts": {
"build": "yarn clean && tsc && rollup -c ./config/rollup.js",
"build:ci": "cross-env CI=true tsc && rollup -c ./config/rollup.js",
"changelog": "conventional-changelog -i ./CHANGELOG.md -s -n ./config/changelog.js",
"ci": "yarn install --frozen-lockfile --non-interactive",
"clean": "rimraf dist types",
"clean:deps": "rimraf node_modules",
"dev": "tsc --watch --noEmit",
"lint": "yarn lint:files .",
"lint:ci": "eslint .",
"lint:files": "eslint --fix",
"release": "standard-version",
"test": "jest -c config/jest.js",
"test:ci": "cross-env CI=true yarn lint:ci && yarn test:coverage",
"test:coverage": "yarn test --coverage"
},
"gitHooks": {
"pre-commit": "lint-staged -c ./config/lint-staged.js",
"commit-msg": "commitlint -g ./config/commitlint.js -E GIT_PARAMS"
},
"prettier": "./config/prettier.js",
"dependencies": {},
"devDependencies": {
"@commitlint/config-conventional": "^12.0.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"commitlint": "^12.0.1",
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"cross-env": "^7.0.2",
"esbuild": "^0.10.2",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-package-json": "^0.1.4",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-esbuild": "^3.0.0",
"rollup-plugin-node-externals": "^2.2.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5",
"yorkie": "^2.0.0"
}
}