forked from hotwired/stimulus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.32 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
{
"name": "@hotwired/stimulus",
"version": "3.2.1",
"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",
"build": "yarn types && rollup -c",
"build:test": "tsc -b tsconfig.test.json",
"watch": "rollup -wc",
"prerelease": "yarn build && 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": "^8.5.0",
"@types/qunit": "^2.9.0",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"concurrently": "^6.2.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-qunit": "^4.1.2",
"karma-sauce-launcher": "^4.3.6",
"karma-webpack": "^4.0.2",
"prettier": "^2.8.2",
"qunit": "^2.9.2",
"rimraf": "^3.0.2",
"rollup": "^2.53",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^6.0.4",
"tslib": "^2.4.0",
"typescript": "^4.9.4",
"webpack": "^4.39.1"
},
"resolutions": {
"webdriverio": "^7.19.5"
}
}