-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "@breww.io/scroll-spyer",
"version": "1.0.0",
"description": "A library that is able to change the feel of scroll spy with custom animation (Current 0.5Beta)",
"main": "./dist/cjs/src/index.js",
"type": "commonjs",
"source": "src/index.ts",
"module": "./dist/esm/src/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"project": "./tsconfig.json",
"scripts": {
"build:dev": "rollup -c --environment NODE_ENV:development --watch --bundleConfigAsCjs",
"build:prod": "rollup -c --environment NODE_ENV:production --bundleConfigAsCjs",
"prepublishOnly": "npm run build:prod"
},
"keywords": [
"ScrollSpyer",
"Scroll Spy",
"typescript",
"scss",
"npm"
],
"author": "Breww.io",
"license": "MIT",
"bugs": {
"email": "modules@brewwe.io"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-eslint": "^9.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.4.0",
"postcss": "^8.4.31",
"prettier": "^2.7.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.2.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@breww.io/scroll-spyer": "^0.0.5",
"dotenv": "^16.3.1",
"lodash": "^4.17.21"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brewwio/Breww-ScrollSpyer.git"
},
"homepage": "https://github.com/brewwio/Breww-ScrollSpyer#readme"
}