-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "view-in",
"version": "0.0.2",
"description": "A dependency free utility to set and remove animation classes on elements as they become visible in the viewport, using the Intersection Observer API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm t && npm run build",
"prebuild": "shx rm -rf dist/",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/uvd/viewIn.git"
},
"keywords": [
"Animation",
"inview",
"intersection",
"observer"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".test.ts$",
"coveragePathIgnorePatterns": [
"./node_modules",
"./dist"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"author": "Ryan Hyslop",
"license": "ISC",
"devDependencies": {
"@types/jest": "^21.1.8",
"jest": "^21.2.1",
"shx": "^0.2.2",
"ts-jest": "^21.2.4",
"typescript": "^2.6.2"
}
}