-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "cordova-shell",
"version": "0.9.15",
"description": "Cordova shell give you an easy access to the device filesystem.",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c rollup.dev.js --watch",
"livereload": "cd app-test && cordova-livereload",
"server-test": "node server-test",
"watch": "concurrently \"npm run dev\" \"npm run livereload\" ",
"version": "rollup -c && git add package.json && git add -A dist",
"postversion": "git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabsharp/cordova-shell.git"
},
"bugs": {
"url": "https://github.com/fabsharp/cordova-shell/issues"
},
"homepage": "https://github.com/fabsharp/cordova-shell",
"keywords": [],
"author": "Fabien Le Vavasseur",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/cordova": "0.0.34",
"@types/cordova-plugin-file": "^4.3.2",
"@types/node": "^13.7.1",
"chai": "^4.2.0",
"concurrently": "^5.1.0",
"mocha": "^7.0.1",
"rollup-plugin-copy": "^3.2.1",
"rollup-plugin-typescript2": "^0.25.3"
},
"dependencies": {
"lodash.flattendeep": "^4.4.0",
"node-fetch": "^2.6.0",
"node-fs-extra": "^0.8.2",
"typescript": "^3.7.5"
}
}