-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "stimulus-datatables",
"version": "1.0.6",
"description": "Run DataTables under Rails Turbolinks",
"keywords": [
"rails",
"datatables",
"stimulus",
"turbolinks"
],
"homepage": "https://github.com/jgorman/stimulus-datatables#readme",
"repository": {
"type": "git",
"url": "https://github.com/jgorman/stimulus-datatables.git"
},
"bugs": {
"url": "https://github.com/jgorman/stimulus-datatables/issues"
},
"author": {
"name": "John Gorman",
"email": "[email protected]",
"url": "https://johngorman.io"
},
"license": "MIT",
"scripts": {
"build": "babel src --out-dir dist --presets @babel/preset-env --plugins=@babel/proposal-class-properties",
"prepare": "yarn run build"
},
"main": "dist/index.js",
"dependencies": {
"datatables.net": "^1.10.20",
"stimulus": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3"
}
}