This repository has been archived by the owner on Apr 7, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
107 lines (107 loc) · 3.29 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "vis-uuid",
"version": "0.0.0-no-version",
"description": "UUIDv1 and UUIDv4 generator.",
"main": "dist/umd.js",
"module": "dist/esm.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/visjs/vis-uuid.git"
},
"author": "Alex de Mulder <[email protected]>",
"contributors": [
"Alexander Wunschik <[email protected]>",
"Tomáš Vyčítal <[email protected]>",
"Alex de Mulder <[email protected]>",
"jos <[email protected]>"
],
"scripts": {
"build": "npm run build:types && npm run build:code && npm run build:docs",
"build:code": "rollup -c rollup.config.js",
"build:docs": "typedoc ./src",
"build:types": "tsc -p tsconfig.types.json",
"clean": "rimraf '{docs,dist}/*'",
"lint": "eslint '{src,test}/**/*.{m,}{j,t}s{x,}'",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run test && npm run type-check && npm run lint",
"preversion": "npm run test && npm run type-check && npm run lint",
"test": "npm run test:coverage",
"test:coverage": "BABEL_ENV=test-cov nyc mocha",
"test:mutate": "BABEL_ENV=test stryker run",
"test:unit": "BABEL_ENV=test mocha",
"type-check": "tsc --noemit",
"version": "npm run build:docs && git add docs && npm run contributors:update && git add package.json",
"contributors:update": "git-authors-cli",
"preparepublish": "npm run contributors:update"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"engines": {
"node": ">=8"
},
"keywords": [
"uuid",
"vis",
"vis.js"
],
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/visjs/vis-uuid/issues"
},
"homepage": "https://github.com/visjs/vis-uuid#README.md",
"files": [
"dist",
"LICENSE*"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/visjs"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "7.8.4",
"@babel/preset-typescript": "7.8.3",
"@babel/register": "7.8.3",
"@babel/runtime-corejs3": "7.8.4",
"@stryker-mutator/babel-transpiler": "2.5.0",
"@stryker-mutator/core": "2.5.0",
"@stryker-mutator/html-reporter": "2.5.0",
"@stryker-mutator/mocha-framework": "2.5.0",
"@stryker-mutator/mocha-runner": "2.5.0",
"@stryker-mutator/typescript": "2.5.0",
"@types/chai": "4.2.9",
"@types/mocha": "7.0.1",
"@types/node": "13.7.7",
"@typescript-eslint/eslint-plugin": "2.20.0",
"@typescript-eslint/parser": "2.20.0",
"assert": "2.0.0",
"babel-plugin-istanbul": "6.0.0",
"chai": "4.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"git-authors-cli": "1.0.21",
"husky": "4.2.3",
"lint-staged": "10.0.7",
"mocha": "7.0.1",
"nyc": "15.0.0",
"prettier": "1.19.1",
"rimraf": "3.0.2",
"rollup": "1.31.1",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-node-resolve": "5.2.0",
"semantic-release": "17.0.4",
"stryker-cli": "1.0.0",
"typedoc": "0.16.10",
"typescript": "3.7.5",
"vis-dev-utils": "2.1.0"
}
}