-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 1.73 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
76
{
"name": "huntjs",
"version": "0.0.0",
"description": "Minimal library to observe nodes entering and leaving the viewport",
"main": "dist/hunt.js",
"browser": "dist/hunt.umd.js",
"module": "dist/hunt.esm.js",
"scripts": {
"format": "prettier ./**/*.js --write",
"test": "ava --verbose",
"prebuild": "npm test",
"start": "microbundle watch -i ./src/index.js --name=Hunt",
"build": "microbundle -i ./src/index.js --name=Hunt --external none",
"release": "travis-deploy-once 'semantic-release'"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jeremenichelli/hunt.git"
},
"keywords": [
"hunt",
"scroll",
"intersection",
"observer",
"viewport",
"dom",
"element"
],
"author": "Jeremias Menichelli",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremenichelli/hunt/issues"
},
"homepage": "https://github.com/jeremenichelli/hunt#readme",
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"ava": "^2.0.0",
"esm": "^3.2.25",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"lodash.clone": "^4.5.0",
"microbundle": "^0.11.0",
"prettier": "^1.17.1",
"semantic-release": "^15.9.9",
"sinon": "^7.3.2",
"travis-deploy-once": "^5.0.3"
},
"ava": {
"require": [
"esm"
]
},
"lint-staged": {
"./**/*.js": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}