This repository was archived by the owner on Jul 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.27 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.27 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
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": "vue-sequence",
"version": "2.0.0",
"private": false,
"scripts": {
"build": "yarn antlr:clear && yarn antlr && vue-cli-service build --target lib --name vue-sequence ./src/index.ts",
"test:unit": "yarn antlr && vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"antlr": "yarn antlr:lexer && yarn antlr:parser",
"antlr:clear": "rm -rf src/generated-parser/*",
"antlr:lexer": "java -Duser.dir=$(pwd)/src/g4 -cp $(pwd)/antlr/antlr-4.8-complete.jar org.antlr.v4.Tool -o ./src/generated-parser -Dlanguage=JavaScript sequenceLexer.g4",
"antlr:parser": "java -Duser.dir=$(pwd)/src/g4 -cp $(pwd)/antlr/antlr-4.8-complete.jar org.antlr.v4.Tool -o ./src/generated-parser -Dlanguage=JavaScript sequenceParser.g4",
"babel": "babel --presets es2015 dist/vue-sequence.umd.js -o dist/vue-sequence.umd.es5.js",
"build-crx": "vue-cli-service build --mode production --target lib --name vue-sequence ./src/index.js",
"start": "yarn antlr && vue-cli-service serve",
"test:specs": "gauge run specs"
},
"main": "./dist/vue-sequence.umd.min.js",
"dependencies": {
"@types/assert": "^1.5.4",
"antlr4": "~4.8.0",
"dom-to-image-more": "^2.8.0",
"gauge-ts": "0.1.0",
"highlight.js": "^10.1.1",
"lodash": "^4.17.20",
"marked": "^2.0.0",
"vue": "2.6.12",
"vue-template-compiler": "2.6.12",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-arrow-functions": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.13.5",
"@babel/runtime-corejs2": "^7.12.13",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.168",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli": "^4.5.11",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "~4.5.11",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.1.3",
"babel-eslint": "^10.1.0",
"core-js": "^3.8.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.6.0",
"gauge-ts": "0.1.0",
"node-sass": "^5.0.0",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^10.1.0",
"svg-url-loader": "^6.0.0",
"taiko": "^1.2.2",
"terser-webpack-plugin": "^3.0.6",
"typescript": "~3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"engines": {
"node": ">=12.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript"
],
"rules": {},
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}