-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "embedded-form-examples",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "time sh scripts/build.sh",
"lint": "eslint --ext .js examples",
"lintfix": "eslint --fix --ext .js examples",
"prettier": "prettier --write \"examples/**/*.js\"",
"server": "sh scripts/server.sh",
"e2e:server": "http-server ./.examples/",
"test": "npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyra/embedded-form-examples.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lyra/embedded-form-examples/issues"
},
"homepage": "https://github.com/lyra/embedded-form-examples#readme",
"devDependencies": {
"@playwright/test": "^1.52.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"gulp": "^4.0.2",
"gulp-debug": "^3.2.0",
"gulp-replace": "1.1.3",
"gulp-run": "^1.7.0",
"http-server": "14.1.1",
"prettier": "2.7.1"
}
}