forked from lightning-js/blits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "@lightningjs/blits",
"version": "0.9.9",
"description": "Blits: The Lightning 3 App Development Framework",
"bin": "bin/index.js",
"exports": {
".": "./index.js",
"./vite": "./vite/index.js",
"./transitions": "./src/router/transitions/index.js"
},
"scripts": {
"test": "c8 npm run test:run",
"test:run": "node -r global-jsdom/register ./node_modules/.bin/tape '{,!(node_modules)/**/}*.test.js' | tap-diff",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"prepublishOnly": "node scripts/prepublishOnly.js",
"postpublish": "node scripts/postpublish.js"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"type": "module",
"author": "Michiel van der Geest <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"babel-eslint": "^10.1.0",
"c8": "^8.0.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"global-jsdom": "24.0.0",
"husky": "^7.0.4",
"jsdom": "24.0.0",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"tap-diff": "^0.1.1",
"tape": "^5.5.0"
},
"dependencies": {
"@lightningjs/msdf-generator": "^1.0.1",
"@lightningjs/renderer": "^0.9.1",
"@lightningjs/vite-plugin-import-chunk-url": "^0.3.0",
"execa": "^8.0.1",
"kolorist": "^1.8.0",
"ora": "^7.0.1",
"prompts": "^2.4.2",
"replace-in-file": "^6.1.0",
"validate-npm-package-name": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lightning-js/blits.git"
}
}