-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 1.96 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": "xypadjs",
"version": "0.0.0-development",
"description": "XYPad controller component using Canvas API",
"main": "xypad.min.js",
"scripts": {
"dev": "parcel index.html",
"test": "jest",
"lint": "eslint --ext .ts .",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BcRikko/xypadjs.git"
},
"keywords": [],
"author": "BcRikko (https://github.com/BcRikko)",
"license": "MIT",
"bugs": {
"url": "https://github.com/BcRikko/xypadjs/issues"
},
"homepage": "https://github.com/BcRikko/xypadjs#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"parcel": "^1.12.3",
"prettier": "^1.18.2",
"rollup": "^1.20.3",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.3",
"sass": "^1.22.10",
"ts-jest": "^24.0.2",
"tslib": "^1.10.0",
"typescript": "^3.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"eslintConfig": {
"env": {
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"plugins": [
"@typescript-eslint",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"prettier/prettier": [
"error",
{
"semi": false,
"singleQuote": true,
"printWidth": 120
}
]
}
}
}