-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.22 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
{
"name": "aurelia-entityinspector",
"version": "1.4.3",
"description": "An Aurelia ui component for viewing JavaScript values (plugin)",
"main": "./dist/es5-umd/index.js",
"module": "./dist/es2015-esm/index.js",
"types": "./dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/es2022-esm/index.js"
}
},
"scripts": {
"compile": "npm run compile:ts",
"compile:ts": "tsc -p ./tsconfig.json --noemit",
"format": "npm run format:html && npm run format:style && npm run format:ts",
"format:ts": "prettier --config .prettierrc src/**/*.ts --write",
"format:html": "prettier --config .prettierrc src/**/*.{html,ejs} --write",
"format:style": "prettier --config .prettierrc src/**/*.{css,scss} --write",
"lint": "npm run lint:html && npm run lint:style && npm run lint:ts",
"lint:ts": "eslint ./src --format visualstudio --ext .ts,.tsx",
"lint:style": "stylelint src/**/*.{css,scss} --allow-empty-input -f unix",
"lint:html": "htmlhint src -c ./node_modules/@josundt/htmlhint-config/.htmlhintrc --format unix",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.es5-amd.json && tsc -p tsconfig.es5-cjs.json && tsc -p tsconfig.es5-umd.json && tsc -p tsconfig.es5-esm.json && tsc -p tsconfig.es2015-esm.json && tsc -p tsconfig.es2022-esm.json && node ./build/build.js",
"clean": "rimraf -g ./dist/**/*"
},
"files": [
"src",
"dist",
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/josundt/aurelia-entityinspector.git"
},
"keywords": [],
"author": "Jørn Andre Sundt",
"license": "MIT",
"bugs": {
"url": "https://github.com/josundt/aurelia-entityinspector/issues"
},
"homepage": "https://github.com/josundt/aurelia-entityinspector#readme",
"devDependencies": {
"@josundt/eslint-config": "5.4.1",
"@josundt/htmlhint-config": "1.0.5",
"@josundt/stylelint-config": "2.4.1",
"@josundt/tsconfig-rules": "5.2.2",
"aurelia-framework": "^1.4.1",
"glob": "10.3.12",
"rimraf": "5.0.5",
"typescript": "5.4.5"
},
"peerDependencies": {
"aurelia-framework": "^1.4.1"
}
}