-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
{
"name": "stimulus-checkbox",
"version": "2.0.0",
"description": "Stimulus controller to toggle/untoggle multiple checkboxes",
"main": "dist/stimulus-checkbox.js",
"source": "src/index.js",
"author": "Lucien George <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"@hotwired/stimulus": "^3.2.2"
},
"devDependencies": {
"@babel/plugin-transform-class-properties": "^7.22.5",
"babel-jest": "^26.6.3",
"babel-preset-es2015": "^6.24.1",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"mutationobserver-shim": "^0.3.7"
},
"jest": {
"setupFiles": [
"./tests/setup.js"
],
"testRegex": ".*_test.js",
"roots": [
"tests"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"scripts": {
"build": "microbundle build",
"dev": "microbundle watch",
"test": "jest"
},
"keywords": [
"stimulus",
"stimulusjs",
"stimulus controller",
"checkbox",
"select",
"multiple"
],
"homepage": "https://github.com/lucien-george/stimulus-checkbox",
"bugs": {
"url": "https://github.com/lucien-george/stimulus-checkbox/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lucien-george/stimulus-checkbox.git"
}
}