-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
{
"name": "@mojs/core",
"version": "1.7.2",
"description": "The motion graphics toolbelt for the web",
"source": "src/mojs.babel.js",
"main": "dist/mo.umd.js",
"browser": "dist/mo.umd.js",
"unpkg": "dist/mo.umd.js",
"scripts": {
"lint": "eslint \"**/*.js\"",
"dev": "webpack serve --config webpack.dev.js --env mode=development",
"build": "webpack --config webpack.umd.js --progress --env mode=production",
"pretest": "webpack --config webpack.umd.js --env mode=test",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mojs/mojs.git"
},
"files": [
"dist"
],
"keywords": [
"motion",
"graphics",
"toolbelt",
"effects",
"animation"
],
"author": {
"name": "Oleg Solomka",
"email": "[email protected]",
"url": "https://twitter.com/legomushroom",
"github": "@legomushroom"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mojs/mojs/issues"
},
"homepage": "https://mojs.github.io",
"engines": {
"node": ">=20",
"npm": "^10"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@mojs/player": "^1.3.0",
"babel-loader": "^9.1.3",
"coffee-loader": "^4.0.0",
"coffeeify": "^3.0.1",
"coffeescript": "^2.7.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-webpack-plugin": "^4.2.0",
"jasmine": "^5.1.0",
"karma": "^6.4.3",
"karma-babel-preprocessor": "^8.0.2",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-coffee-preprocessor": "^1.0.1",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-summary-reporter": "^3.1.1",
"puppeteer": "^21.11.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@babel/runtime": "^7.24.7"
}
}