-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.05 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
{
"name": "grid-table-editor",
"version": "1.0.0",
"description": "A simple Data Table Editor that generates Markdown, CSV or JSON. It can also be used to interchange data between the formats, supporting editing in the grid.",
"main": "index.html",
"scripts": {
"test": "jest",
"testverbose": "jest --verbose",
"testcoverage": "jest --coverage",
"anywaydata:mac": "npm run anywaydata --prefix docs-src && cp ./index.html ./build/app.html && cp -R ./images ./build/images && cp -R ./js ./build/js && cp -R ./libs ./build/libs && cp ./styles.css ./build/styles.css && cp -R ./build/ ../../anywaydata-com",
"anywaydata:win": "npm run anywaydata --prefix docs-src && echo copying index && copy .\\index.html .\\build\\app.html && echo copying images && xcopy .\\images .\\build\\images /e /k /i && xcopy .\\js .\\build\\js /e /k /i && xcopy .\\libs .\\build\\libs /e /k /i && copy .\\styles.css .\\build\\styles.css && echo cleaning anywaydata for deployment && ..\\anywaydata-com\\make-ready-for-prod.bat",
"previewdocs": "npm run start --prefix docs-src"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"https://cdn.skypack.dev/@faker-js/faker@v9.7.0": "@faker-js/faker",
"https://unpkg.com/papaparse@5.3.2/papaparse.min.js": "papaparse",
"/libs/randexp.min.js": "randexp"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/eviltester/grid-table-editor.git"
},
"keywords": [
"table editor",
"test data",
"test data generator",
"markdown table",
"html table",
"data grid editor"
],
"author": "Alan Richardson",
"license": "MIT",
"bugs": {
"url": "https://github.com/eviltester/grid-table-editor/issues"
},
"homepage": "https://github.com/eviltester/grid-table-editor#readme",
"dependencies": {
"jest": "^28.1.0",
"jsdom": "^20.0.0",
"papaparse": "^5.3.2",
"randexp": "^0.5.3"
},
"devDependencies": {
"@babel/preset-env": "^7.18.0",
"@faker-js/faker": "^9.7.0",
"babel-jest": "^28.1.0",
"jest-extended": "^2.0.0"
}
}