-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 1.03 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
{
"name": "ember-h-captcha",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/sinankeskin/ember-h-captcha",
"license": "MIT",
"author": "Sinan Keskin <[email protected]> (https://kesk.in)",
"scripts": {
"build": "npm run build --workspace ember-h-captcha",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"prepare": "npm run build",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "npm start --workspace ember-h-captcha -- --no-watch.clearScreen",
"start:test-app": "npm start --workspace test-app",
"test": "npm run test --workspaces --if-present",
"deploy": "npm version patch && git push && git push origin --tags && npm publish --workspace ember-h-captcha"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "2.8.8"
},
"workspaces": [
"ember-h-captcha",
"test-app"
],
"engines": {
"node": "14.* || 16.* || >= 18"
}
}