-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "stimulus-sticky-table-header",
"version": "0.1.1",
"description": "Sticky Table Header Controller Using Stimulus.js",
"keywords": [
"stimulus",
"controller",
"sticky",
"table",
"header"
],
"main": "dist/stimulus-sticky-table-header.min.js",
"source": "src/stimulus-sticky-table-header.js",
"repository": {
"type": "git",
"url": "git+https://github.com/johnbeatty/stimulus-sticky-table-header.git"
},
"author": "John Beatty",
"license": "MIT",
"bugs": {
"url": "https://github.com/johnbeatty/stimulus-sticky-table-header/issues"
},
"homepage": "https://github.com/johnbeatty/stimulus-sticky-table-header#readme",
"babel": {
"plugins": [
"transform-class-properties",
"transform-runtime"
],
"presets": [
[
"env",
{
"modules": false
}
]
]
},
"scripts": {
"build": "yarn run lint && webpack --env dev && webpack --env build",
"lint": "yarn run eslint src",
"prepublish": "yarn run build"
},
"dependencies": {
"stimulus": "^1.0.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-middleware": "^3.1.3"
}
}