-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "rdatatb",
"version": "0.2.1",
"description": "Simple vanilla javascript datatable",
"main": "./index.ts",
"scripts": {
"watch": "babel --watch src ---out-dir lib --extensions '.js,.ts,.tsx,.jsx'",
"build": "babel index.ts --out-file compiled.js",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rakhmadi/RdataTB.git"
},
"keywords": [
"vanila-datatable",
"data",
"table",
"bootstrap",
"datatable"
],
"author": "rakhmadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rakhmadi/RdataTB/issues"
},
"homepage": "https://github.com/Rakhmadi/RdataTB#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-typescript": "^7.15.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.20.0",
"ts-loader": "^9.2.5",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.2"
},
"dependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@node-minify/core": "^6.2.0"
}
}