-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "@pflow-dev/metamodel",
"version": "0.12.0",
"main": "/index.js",
"types": "/index.d.ts",
"description": "Create Petri-nets with js, ts, or json",
"files": [
"index.ts",
"model.ts",
"snapshot.ts",
"stream.ts",
"compression.ts",
"model.js.map",
"model.js",
"model.d.ts",
"snapshot.js.map",
"snapshot.js",
"snapshot.d.ts",
"stream.js.map",
"stream.js",
"stream.d.ts",
"index.js.map",
"index.js",
"index.d.ts",
"compression.js.map",
"compression.js",
"compression.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/pflow-dev/metamodel-js"
},
"author": "[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "git clean -df",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "jest --forceExit --coverage --verbose --detectOpenHandles"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@types/chai": "^4.2.11",
"@types/eslint": "^6.8.1",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^4.9.4"
},
"dependencies": {
"brotli-wasm": "^2.0.1"
}
}