-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"name": "strange-attractor",
"version": "0.0.2",
"description": "Playing with Matrix4x4 and attractor algorithms.",
"homepage": "http://robosparrow.github.io/strange-attractor",
"devDependencies": {
"chai": "^4.2.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^6.7.1",
"eslint": "^9.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"esm": "^3.2.25",
"file-loader": "^2.0.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"style-loader": "^0.23.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^5.2.1",
"worker-loader": "^2.0.0"
},
"dependencies": {
"mithril": "^1.1.7",
"muicss": "^0.9.42"
},
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --mode development --config webpack.config.js",
"build": "webpack -p --progress --mode production --config webpack.config.js",
"lint": "eslint src/**/*.js",
"test": "./node_modules/mocha/bin/mocha test/**/*.js --reporter spec -r esm",
"deploy": "gh-pages -d dist"
}
}