forked from gitrows/gitrows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.93 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.93 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "gitrows",
"version": "0.9.0",
"description": "Use git repos as CRUD data storage",
"main": "gitrows.js",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean && mkdir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"build-umd": "BABEL_ENV=umd babel src/** -d dist/utils",
"build": "npm run build-umd && npm run dist && npm run readme",
"readme": "cat docs/js/*.md > README.md && sed -i '' -e 's,https://gitrows.com/docs/js/,#,g' 'README.md'",
"postbuild": "cp -r dist/ ../../Websites/gitrows.com/assets/js && cp -r docs/js/ ../../Websites/gitrows.com/pages/docs/js/src && cp -r docs/api/ ../../Websites/gitrows.com/pages/docs/api/src",
"dist": "BABEL_ENV=node babel src/** -d lib && webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitrows/gitrows.git"
},
"keywords": [
"git",
"github",
"gitlab",
"database",
"db",
"api",
"json",
"csv"
],
"author": "Nicolas Zimmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/gitrows/gitrows/issues"
},
"homepage": "https://github.com/gitrows/gitrows#readme",
"dependencies": {
"csv-parse": "^4.12.0",
"csv-stringify": "^5.5.1",
"node-fetch": "^2.6.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-modules-umd": "^7.10.4",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-github": "^3.2.1",
"buffer": "^6.0.3",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^4.9.2"
}
}