This repository has been archived by the owner on Jun 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "@neoflow/scrollmotion",
"version": "0.4.0",
"description": "A JavaScript library for screen-intersected animations on page scroll.",
"main": "dist/scrollmotion.js",
"module": "dist/esm/scrollmotion.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rollup --config rollup.config.js --environment NODE_ENV:production",
"watch": "rollup --config rollup.config.js --watch",
"serve": "rollup --config rollup.config.js --watch --serve",
"lint": "eslint --ext .ts src",
"test": "mocha --require ts-node/register test/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neoflow/Scrollmotion.git"
},
"keywords": [
"javascript",
"intersectionobserver",
"scroll",
"animation"
],
"author": "Jonathan Nessier, Neoflow",
"browserslist": "last 2 version and >5%, not ie <= 11",
"license": "MIT",
"bugs": {
"url": "https://github.com/Neoflow/Scrollmotion/issues"
},
"homepage": "https://github.com/Neoflow/Scrollmotion#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rbnlffl/rollup-plugin-eslint": "^3.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/chai": "^4.3.1",
"@types/expect": "^24.3.0",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"browser-sync": "^2.27.10",
"chai": "^4.3.6",
"jsdom": "^19.0.0",
"mocha": "^10.0.0",
"rollup": "^2.75.6",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {},
"directories": {
"test": "test"
}
}