-
Notifications
You must be signed in to change notification settings - Fork 426
/
package.json
76 lines (76 loc) · 2.4 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@hotwired/stimulus",
"version": "3.2.2",
"license": "MIT",
"description": "A modest JavaScript framework for the HTML you already have.",
"author": "Basecamp, LLC",
"contributors": [
"David Heinemeier Hansson <[email protected]>",
"Javan Makhmali <[email protected]>",
"Sam Stephenson <[email protected]>"
],
"homepage": "https://stimulus.hotwired.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/hotwired/stimulus.git"
},
"bugs": {
"url": "https://github.com/hotwired/stimulus/issues"
},
"publishConfig": {
"access": "public"
},
"module": "dist/stimulus.js",
"main": "dist/stimulus.umd.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/stimulus.js",
"dist/stimulus.umd.js",
"dist/types/**/*"
],
"scripts": {
"clean": "rm -fr dist",
"types": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types",
"prebuild": "yarn build:test",
"build": "yarn types && rollup -c",
"build:test": "tsc -b tsconfig.test.json",
"watch": "rollup -wc",
"prerelease": "yarn clean && yarn build && yarn build:test && git --no-pager diff && echo && npm pack --dry-run",
"release": "npm publish",
"start": "concurrently \"npm:watch\" \"npm:start:examples\"",
"start:examples": "cd examples && yarn install && node server.js",
"test": "yarn build:test && karma start karma.conf.cjs",
"test:watch": "yarn test --auto-watch --no-single-run",
"lint": "eslint . --ext .ts",
"format": "yarn lint --fix"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^11.1.1",
"@types/qunit": "^2.19.10",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"concurrently": "^6.2.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-qunit": "^4.1.2",
"karma-sauce-launcher": "^4.3.6",
"karma-webpack": "^4.0.2",
"prettier": "^2.8.8",
"qunit": "^2.20.0",
"rimraf": "^3.0.2",
"rollup": "^2.53",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^9.4.3",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"webpack": "^4.47.0"
},
"resolutions": {
"webdriverio": "^7.19.5"
}
}