-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
{
"name": "intersection-observer-admin",
"version": "0.3.4",
"description": "Intersection Observer Admin for better performance",
"main": "dist/intersection-observer-admin.umd.js",
"module": "dist/intersection-observer-admin.es5.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc && tsc --outDir dist/es && rollup -c rollup.config.ts",
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/index.test.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"start": "tsc -w & rollup -c rollup.config.ts -w",
"stats": "node scripts/size-calc",
"prebuild": "rimraf dist",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/snewcomer/intersection-observer-admin.git"
},
"keywords": [
"intersection",
"observer",
"infinity",
"lazy",
"loading"
],
"author": "Scott Newcomer",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/snewcomer/intersection-observer-admin/issues"
},
"homepage": "/~https://github.com/snewcomer/intersection-observer-admin#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^2.0.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"gzip-size": "^5.1.1",
"jest": "^24.9.0",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.18.2",
"pretty-bytes": "^5.3.0",
"release-plan": "^0.9.0",
"rollup": "^1.22.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.6.3"
},
"dependencies": {}
}