-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
42 lines (42 loc) · 1.4 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
{
"name": "OvertureJS",
"author": "Neil Jenkins <[email protected]>",
"version": "1.0.0",
"description": "Overture is a powerful basis for building fast web applications with performance at or surpassing native apps. It is borne from the general-purpose frontend code that powers Fastmail.",
"main": "./dist/O.js",
"type": "module",
"engines": {
"node": ">=6",
"npm": ">=4"
},
"jest": {
"transform": {}
},
"scripts": {
"prepare": "npm run build",
"build": "./build.js",
"lint": "npm run lint-eslint && npm run lint-prettier",
"lint-eslint": "eslint source",
"lint-prettier": "prettier --check source",
"fix": "prettier --write source && eslint --fix source",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fastmail/overture.git"
},
"bugs": {
"url": "https://github.com/fastmail/overture/issues"
},
"devDependencies": {
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-overture": "file:eslint-plugin-overture",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3"
}
}