-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.83 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": "@phntms/reveal-on-scroll",
"description": "Lightweight library to reveal elements on scroll.",
"version": "0.1.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/phantomstudios/reveal-on-scroll#readme",
"repository": {
"type": "git",
"url": "https://github.com/phantomstudios/reveal-on-scroll.git"
},
"bugs": {
"url": "https://github.com/phantomstudios/reveal-on-scroll/issues"
},
"keywords": [
"lightweight",
"reveal",
"animated",
"onscroll"
],
"scripts": {
"build": "tsc",
"build:types": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"coverage": "jest --coverage",
"lint": "NODE_ENV=test npm-run-all --parallel lint:*",
"lint:js": "eslint \"src/**/*.{js,ts}\"",
"lint:format": "prettier \"**/*.{md,html,yaml,yml}\" --check",
"lint:type-check": "tsc --noEmit",
"fix": "npm-run-all --sequential fix:*",
"fix:js": "eslint \"src/**/*.{js,ts}\" --fix",
"fix:format": "prettier \"**/*.{md,html,yaml,yml}\" --write",
"depcheck": "npx npm-check --update"
},
"author": "Paulo Ferreira Jorge (paulo.jorge@phntms.com)",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"browser-env": "^3.2.6",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-jest": "^26.1.0",
"typescript": "^4.1.5"
}
}