-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "meta-struct-js",
"version": "0.1.8",
"keywords": [
"graph",
"edges",
"nodes",
"javascript"
],
"description": "Creation directed acyclic graph",
"homepage": "https://github.com/elenik72/MetaStructJS/#README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/elenik72/MetaStructJS"
},
"main": "dist/index.js",
"module": "dist/index.js",
"author": "Sergey Andreev <elenik1994@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack serve --hot",
"test": "jest --coverage --coverageReporters='text-summary'",
"lint": "eslint lib"
},
"dependencies": {
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.15",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}