-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.1 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
{
"name": "single-spa-aurelia-framework",
"version": "1.0.10",
"description": "Single SPA adapter for Aurela framework (v1).",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" \"tests/**/*.ts\" --quiet --fix",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterpolman/single-spa-aurelia-framework.git"
},
"keywords": [
"singlespa",
"aurelia"
],
"author": "Peter Polman",
"license": "ISC",
"bugs": {
"url": "https://github.com/peterpolman/single-spa-aurelia-framework/issues"
},
"homepage": "https://github.com/peterpolman/single-spa-aurelia-framework#readme",
"files": [
"lib/**/*"
],
"dependencies": {
"aurelia-framework": "^1.3.1",
"single-spa": "^5.9.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "^4.1.5"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"semi": [
"error",
"always"
],
"quotes": [
"error",
"single"
],
"no-debugger": "off",
"no-sparse-arrays": "off",
"@typescript-eslint/explicit-function-return-type": "off"
},
"ignorePatterns": [
"test/**/*.{j,t}s?(x)",
"dist/*",
"src/types/",
"**/*.d.ts",
"node_modules"
],
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"mocha": true
}
}
]
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"bracketSpacing": true,
"printWidth": 120,
"trailingComma": "all",
"quoteProps": "consistent",
"endOfLine": "auto"
}
}