-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "@lightningjs/blits",
"version": "1.8.3",
"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",
"./precompiler": "./src/lib/precompiler/precompiler.js",
"./plugins": "./src/plugins/index.js",
"./symbols": "./src/lib/symbols.js"
},
"scripts": {
"test": "c8 npm run test:run",
"test:run": "node -r global-jsdom/register ./node_modules/.bin/tape '{,!(node_modules|packages)/**/}*.test.js' | tap-diff",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"prepublishOnly": "node scripts/prepublishOnly.js",
"postpublish": "node scripts/postpublish.js"
},
"types": "./index.d.ts",
"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.1.0",
"@lightningjs/renderer": "^2.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/lightning-js/blits.git"
}
}