-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
107 lines (107 loc) · 3.09 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "scrollxp",
"version": "2.1.2",
"description": "A library for scrolling animations.",
"main": "dist/scrollxp.min.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"start": "npm run compile-sass & node ./scripts/serve.js",
"test": "env TS_NODE_PROJECT=\"tsconfig.testing.json\" nyc mocha -r ts-node/register/transpile-only -r jsdom-global/register -r source-map-support/register tests/**/*.spec.ts",
"lint": "eslint --fix ./src/*",
"clean:compile": "rimraf ./build",
"clean:dist": "rimraf ./dist",
"clean": "npm-run-all clean:compile clean:dist",
"copy:src": "cpx './src/**' ./build/src",
"copy:conf": "cpx ./tsconfig.json ./build",
"copy": "npm-run-all copy:src copy:conf",
"precompile": "npm-run-all clean:compile copy",
"compile": "tsc -p ./build",
"compile-sass": "node-sass __demo__/src/scss/main.scss __demo__/assets/css/styles.css",
"postcompile": "rimraf ./build/tsconfig.json",
"prebundle": "npm-run-all clean:dist",
"bundle": "webpack --config ./scripts/webpack.prod.js",
"preghpages": "rimraf ./.tmp",
"ghpages": "webpack --config ./scripts/webpack.ghpages.js",
"deploy": "./scripts/deploy.sh",
"release": "node ./scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weareferal/scrollxp.git"
},
"keywords": [
"scrolling",
"animation",
"smooth"
],
"author": "Feral <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/weareferal/scrollxp/issues"
},
"homepage": "https://github.com/weareferal/scrollxp#readme",
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"browser-sync": "^2.27.10",
"browser-sync-webpack-plugin": "^2.3.0",
"chai": "^4.3.6",
"chalk": "^5.0.1",
"cpx": "^1.5.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"execa": "^6.1.0",
"fs": "0.0.1-security",
"gsap": "^3.11.0",
"include-media": "^1.4.10",
"inquirer": "^9.1.1",
"ip": "^1.1.8",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"listr": "^0.14.3",
"mocha": "^10.0.0",
"node-forge": "^1.3.1",
"node-sass": "^7.0.1",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"path": "^0.12.7",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"source-map-support": "^0.5.21",
"ts-loader": "^9.3.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"smooth-scrollbar": "^8.7.5"
}
}