-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "@silexlabs/silex-plugins",
"version": "1.0.10",
"description": "Open architecture for Silex plugins",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"preversion": "$npm_execpath run lint && $npm_execpath test && $npm_execpath run build",
"watch": "$npm_execpath test -- --watch",
"build": "rm -rf dist && tsc && tsc --build tsconfig.es5.json",
"lint": "eslint src",
"fix": "$npm_execpath run lint -- --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/silexlabs/silex-plugins.git"
},
"keywords": [
"silex",
"plugin"
],
"author": "lexoyo",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/silexlabs/silex-plugins/issues"
},
"homepage": "https://github.com/silexlabs/silex-plugins#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"events": "^3.3.0",
"jest": "^29.7.0",
"typescript": "^5.2.2"
}
}