-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "ifeeds",
"version": "1.1.2",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel watch:js server",
"build:js": "rollup --config",
"watch:js": "rollup --config --watch",
"server": "servor dist --reload --browse",
"minify:js": "terser ./dist/js/feeds.js --compress --mangle --source-map --output ./dist/js/feeds.min.js",
"compile:js": "npm-run-all build:js minify:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkreations/ifeeds.git"
},
"keywords": [],
"author": "zkreations <[email protected]> (https://zkreations.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zkreations/ifeeds/issues"
},
"homepage": "https://github.com/zkreations/ifeeds#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"eslint": "^8.39.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"npm-run-all": "^4.1.5",
"rollup": "^3.20.7",
"servor": "^4.0.2",
"terser": "^5.17.1"
}
}