-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
69 lines (69 loc) · 2.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "regular-table",
"version": "0.6.4",
"description": "A regular `<table>`, for an async and virtual data model.",
"repository": {
"type": "git",
"url": "https://github.com/finos/regular-table"
},
"engines": {
"node": ">=16"
},
"license": "Apache-2.0",
"main": "dist/esm/regular-table.js",
"module": "dist/esm/regular-table.js",
"browser": "dist/esm/regular-table.js",
"unpkg": "dist/esm/regular-table.js",
"jsdelivr": "dist/esm/regular-table.js",
"types": "index.d.ts",
"files": [
"dist/**/*",
"src/less/*.less",
"babel.config.js",
"index.d.ts"
],
"scripts": {
"build:esbuild": "node build.js",
"build:examples": "literally -c examples/literally.config.js && literally -c features/literally.config.js",
"build": "npm-run-all -p build:*",
"clean": "rimraf dist",
"declarations": "tsc -b declarationsconfig.json",
"api": "jsdoc2md src/js/index.js --separators > api.md",
"docs": "yarn build && node scripts/sync_gist.js && (cd docs && yarn build)",
"fix": "prettier --write src test features/*.md examples/*.md examples/*.html",
"lint": "prettier --check src test features/*.md examples/*.md examples/*.html",
"prettier": "prettier --write test/features/*.test.js features/*.md",
"start": "http-server",
"test": "yarn lint && jest --noStackTrace --runInBand",
"watch:examples": "literally -c examples/literally.config.js --watch",
"watch:features": "literally -c features/literally.config.js --watch",
"watch": "npm-run-all -p watch:*"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@prospective.co/procss": "^0.1.13",
"@types/react": "^17.0.0",
"codedown": "^2.1.6",
"commander": "^5.1.0",
"esbuild": "^0.17.19",
"glob": "^7.1.6",
"http-server": "^0.12.3",
"jest": "^26.0.1",
"jest-puppeteer": "^6.1.0",
"jest-puppeteer-docker": "^1.4.2",
"jsdoc-to-markdown": "^6.0.1",
"literally-cli": "^0.0.10",
"marked-ast-markdown": "^2.1.0",
"npm-run-all": "^4.1.3",
"prettier": "^2.0.5",
"puppeteer": "^13.1.3",
"react": "15",
"react-dom": "15",
"source-map-explorer": "^2.4.2",
"superstore-arrow": "^1.0.0",
"typescript": "^4.2.4"
},
"dependencies": {}
}