-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 953 Bytes
/
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
{
"name": "snowpack-cycle",
"version": "1.1.0",
"description": "Snowpack create-snowpack-app template for Cycle.js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "snowpack dev",
"build": "snowpack build",
"format": "prettier --write \"src/**/*.js\"",
"lint": "prettier --check \"src/**/*.js\"",
"deploy": "git push && git push --tags && npm publish"
},
"keywords": [
"csa-template",
"cycle",
"cycle.js",
"snowpack"
],
"author": "Rajasegar Chandran <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/rajasegar/snowpack-cycle",
"repository": {
"type": "git",
"url": "https://github.com/rajasegar/snowpack-cycle"
},
"devDependencies": {
"prettier": "^2.2.1",
"snowpack": "^2.18.0"
},
"dependencies": {
"@cycle/dom": "^22.8.0",
"@cycle/run": "^5.5.0",
"xstream": "^11.14.0"
}
}