-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 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
62
63
64
65
66
67
{
"name": "@bam.tech/lrud",
"version": "8.0.2",
"private": false,
"description": "Left, Right, Up, Down. A spatial navigation library for devices with input via directional controls",
"main": "dist/cjs/index.min.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"homepage": "https://github.com/bamlab/lrud",
"license": "Apache-2.0",
"files": [
"dist"
],
"keywords": [
"tv",
"navigation",
"tv-apps",
"react",
"react-tv",
"focus",
"focus management",
"spatial navigation",
"smart tv"
],
"repository": {
"type": "git",
"url": "[email protected]:bamlab/lrud.git"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"rimraf": "^2.6.2",
"rollup": "^1.25.1",
"rollup-plugin-commonjs": "^9.1.2",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^26.5.4",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"mitt": "3.0.1"
},
"scripts": {
"preversion": "npm test",
"postversion": "git push && git push --tags",
"clean": "rimraf dist",
"lint": "eslint src/*.ts src/**/*.ts",
"test": "npm run build && jest",
"test:verbose": "jest --verbose",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"prebuild": "npm run clean",
"build": "rollup -c",
"publish:package": "npm publish --access public",
"watch": "npm run build -- -w"
}
}