-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 2.14 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
68
69
70
71
72
73
74
75
{
"name": "@oberon-amsterdam/horizontal",
"version": "1.0.5",
"description": "Plug and play horizontal scrolling",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm run build",
"typecheck": "tsc --project . --noEmit",
"build": "npm run clean && run-s build:*",
"build:lib": "tsc --project .",
"build:toc": "doctoc --notitle README.md",
"clean": "rimraf *.js *.d.ts *.js.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oberonamsterdam/horizontal.git"
},
"keywords": [
"horizontal",
"virtual",
"scroll",
"x-axis",
"react",
"hook"
],
"author": "Jari Zwarts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oberonamsterdam/horizontal/issues"
},
"homepage": "https://github.com/oberonamsterdam/horizontal#readme",
"prettier": "oberon-prettier-config",
"lint-staged": {
"*.ts?(x)": [
"tslint --fix",
"npm run test --if-present -- --findRelatedTests",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run typecheck && lint-staged"
}
},
"devDependencies": {
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"check-dependencies": "^1.1.0",
"doctoc": "^1.4.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"oberon-prettier-config": "^1.0.0",
"parcel": "^1.12.3",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^3.0.0",
"tslint": "^5.20.0",
"tslint-config-oberon": "^1.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
},
"optionalDependencies": {},
"dependencies": {
"@types/node": "^12.7.5",
"events": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"npm-run-all": "^4.1.5",
"rebound": "^0.1.0"
}
}