-
-
Notifications
You must be signed in to change notification settings - Fork 890
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.13 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.13 KB
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
{
"name": "@mojs/core",
"version": "1.7.1",
"description": "The motion graphics toolbelt for the web",
"type": "module",
"source": "src/mojs.babel.js",
"main": "dist/mo.umd.js",
"browser": "dist/mo.umd.js",
"unpkg": "dist/mo.umd.js",
"scripts": {
"lint": "eslint .",
"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": "legomushroom@gmail.com",
"url": "https://twitter.com/legomushroom",
"github": "@legomushroom"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mojs/mojs/issues"
},
"homepage": "https://mojs.github.io",
"engines": {
"node": "^24",
"npm": "^11"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@eslint/js": "^10.0.1",
"@mojs/player": "^1.3.0",
"@stylistic/eslint-plugin": "^5.10.0",
"babel-loader": "^10.1.1",
"coffee-loader": "^5.0.0",
"coffeeify": "^3.0.1",
"coffeescript": "^2.7.0",
"coveralls": "^3.1.1",
"eslint": "^10.2.0",
"eslint-webpack-plugin": "^6.0.0",
"globals": "^17.5.0",
"jasmine": "^6.2.0",
"karma": "^6.4.4",
"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": "^4.0.1",
"puppeteer": "^24.40.0",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.106.1",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@babel/runtime": "^7.29.2"
}
}