-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.07 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
{
"name": "rme.js",
"version": "2.0.13",
"description": "Functional JavaScript library for HTML 5 web sites.",
"main": "./src/index.js",
"keywords": [
"RME",
"rme",
"rme.js",
"JSON",
"HTML5",
"json",
"html5",
"Functional",
"js",
"JavaScript"
],
"files": [
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"demo": "webpack-dev-server --open --config ./webpack/webpack.demo.js",
"calculator": "webpack-dev-server --open --config ./webpack/webpack.calculator.js",
"docs": "node ./webpack/docserver.js",
"dev": "webpack-dev-server --open --config ./webpack/webpack.dev.js",
"rme": "node ./webpack/webpack.build.rme.js",
"rme5es": "./node_modules/.bin/babel ./rme-build-current/rme.js -o ./rme-build-current/rme.es5.js --presets=@babel/env",
"rme5esmin": "./node_modules/.bin/babel --minified --no-comments ./rme-build-current/rme.js -o ./rme-build-current/rme.es5.min.js --presets=@babel/env",
"buildRme": "npm run rme && npm run rme5es && npm run rme5esmin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamiLu/RME.git"
},
"author": "Jami Lu",
"license": "MIT",
"bugs": {
"url": "https://github.com/JamiLu/RME/issues"
},
"homepage": "https://jamilu.github.io/RME/#home",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"animate.css": "^3.7.2",
"babel-loader": "^9.1.3",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.21.1",
"css-loader": "^6.8.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"open": "^9.1.0",
"regenerator-runtime": "^0.13.11",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}