-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.45 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
{
"name": "oneloop.js",
"version": "5.1.4",
"description": "Javascript animation library. Provide scroll observer, tween, throttled event, splitted text, vector2, easings in a bundle of about 5kb gzipped",
"type": "module",
"main": "./build/OneLoop.min.js",
"module": "./build/OneLoop.min.js",
"scripts": {
"start": "npm run dev",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgRed.bold\" \"rollup -c -w rollup.config.js\" \"http-server --proxy http://localhost:8080/test/\"%",
"build": "rollup -c rollup.config.js && rollup -c rollup.config.js --environment BUILD:production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Nicolas Langle",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/n-langle/OneLoop.js"
},
"bugs": {
"url": "https://github.com/n-langle/OneLoop.js/issues"
},
"publishConfig": {
"@n-langle:registry": "https://npm.pkg.github.com"
},
"keywords": [
"oneloop",
"front-end",
"javascript",
"web",
"animation",
"easings",
"tween",
"scroll-observer",
"splitted-text",
"throttled-event"
],
"devDependencies": {
"concurrently": "5.3.0",
"eslint": "8.36.0",
"http-server": "^14.1.1",
"rollup": "2.79.2",
"rollup-plugin-uglify": "^5.0.2"
}
}