-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.16 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"name": "services",
"version": "1.0.0",
"description": "My services",
"license": "MIT",
"private": true,
"repository": "VovanR/services",
"author": "Vladimir Rodkin <mail@vovanr.com> (https://github.com/VovanR)",
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public",
"start:dev": "sirv public --dev",
"deploy": "npm run build && gh-pages -d public",
"test": "npm run test:testcafe",
"test:testcafe": "testcafe --assertion-timeout=1000 \"firefox:headless\" test-cafe/*.test.js --app \"npm run build && npm run start\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"gh-pages": "4.0.0",
"npm-run-all": "4.1.5",
"rollup": "2.77.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-svelte": "7.1.0",
"rollup-plugin-terser": "7.0.2",
"sirv-cli": "2.0.2",
"svelte": "3.49.0",
"testcafe": "1.20.0"
},
"bugs": {
"url": "https://github.com/VovanR/services/issues"
},
"homepage": "https://vovanr.github.io/services"
}