-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.01 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
{
"name": "@innoq/tabelle",
"version": "2.0.1",
"description": "A library for generating pretty filterable and sortable tables that use your backend of choice",
"main": "lib/index.js",
"scripts": {
"start": "npm-run-all --parallel aiur:watch compile:watch",
"test": "eslint --cache --ext .js *.js lib && echo ✓",
"compile": "faucet --no-fingerprint",
"compile:watch": "npm run compile -- --watch",
"aiur": "aiur -t ./dist",
"aiur:watch": "aiur -t ./dist --watch --liveserve 0.0.0.0:4001"
},
"author": "joy.heron@innoq.com",
"homepage": "https://github.com/innoq/tabelle",
"license": "Apache-2.0",
"dependencies": {
"list.js": "^2.3.1",
"uitil": "^2.8.0"
},
"devDependencies": {
"aiur": "^0.10.0",
"eslint": "^8.48.0",
"eslint-config-fnd": "^1.13.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"faucet-pipeline-core": "^2.0.0",
"faucet-pipeline-js": "^3.0.0",
"faucet-pipeline-sass": "^1.8.0",
"npm-run-all": "^4.1.5"
}
}