forked from cyxx/another_js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "another_js",
"version": "1.0.0",
"description": "Another World JS interpreter",
"main": "another-full.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack",
"serve": "http-server -c-1 ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warpdesign/another_js.git"
},
"author": "Nicolas Ramz",
"license": "ISC",
"bugs": {
"url": "https://github.com/warpdesign/another_js/issues"
},
"homepage": "https://github.com/warpdesign/another_js#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.0.0",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.0.0",
"node-sass": "^6.0.1",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.0.1",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"fflate": "^0.7.1",
"nipplejs": "^0.9.0"
}
}