forked from hotwired/stimulus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.41 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
{
"name": "stimulus-repo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "lerna run --scope @stimulus/examples --stream start",
"clean": "rimraf dist packages/**/dist",
"reset": "yarn clean && rimraf node_modules packages/**/node_modules",
"doc": "typedoc --out dist/docs --mode file --excludePrivate --excludeNotExported packages/@stimulus/core/src",
"lint": "tslint --project tsconfig.json",
"pretest": "yarn clean && yarn lint",
"test": "karma start",
"test:watch": "yarn test --auto-watch --no-single-run",
"precompile": "yarn clean",
"compile": "tsc",
"predist": "yarn compile",
"dist": "node scripts/dist-to-packages.js",
"prebuild": "yarn lint && yarn dist",
"build": "lerna run build",
"prerelease": "yarn build",
"release": "lerna publish"
},
"workspaces": [
"packages/*",
"packages/@stimulus/*"
],
"devDependencies": {
"@types/qunit": "^2.0.31",
"fs-extra": "^5.0.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-qunit": "^1.2.1",
"karma-sauce-launcher": "^1.2.0",
"karma-webpack": "^2.0.9",
"lerna": "^2.5.1",
"qunitjs": "^2.4.0",
"rimraf": "^2.6.2",
"ts-loader": "^3.2.0",
"tslint": "^5.7.0",
"typedoc": "^0.9.0",
"typedoc-plugin-stimulus": "file:packages/typedoc-plugin-stimulus",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
}
}