-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "stimulus-library",
"description": "A library of useful controllers for Stimulus",
"keywords": [
"stimulusjs",
"stimulus-js",
"stimulus library",
"stimulus controller",
"ruby on rails",
"ruby-on-rails"
],
"version": "0.9.11",
"license": "MIT",
"author": {
"name": "Sub-Xaero",
"url": "https://github.com/Sub-Xaero/"
},
"homepage": "https://sub-xaero.github.io/stimulus-library/",
"repository": {
"type": "git",
"url": "https://github.com/Sub-Xaero/stimulus-library"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"clean": "rm -rf packages/**/dist/**",
"build": "rm -rf packages/**/dist/** && lerna run build",
"build:no-cache": "rm -rf packages/**/dist/** && lerna run build --skip-nx-cache",
"build:watch": "rm -rf packages/**/dist/** && chokidar chokidar --silent --initial 'packages/*/src/**/*.ts' -c 'npm run build'",
"test": "lerna run test",
"prepack": "npm run build",
"publish": "lerna publish --conventional-commits"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"lerna": "^8.0.0",
"sinon": "^19.0.2"
},
"workspaces": [
"packages/*"
]
}