-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.57 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
{
"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",
"anywaydata": "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",
"previewdocs": "npm run start --prefix docs-src"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"https://cdn.skypack.dev/@faker-js/[email protected]": "@faker-js/faker",
"https://unpkg.com/[email protected]/papaparse.min.js": "papaparse"
}
},
"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": "^7.1.0",
"babel-jest": "^28.1.0",
"jest-extended": "^2.0.0"
}
}