-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1011 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
37
38
39
{
"name": "rx-ui-patterns",
"version": "1.0.0",
"description": "Patterns for UI development with RxJS",
"scripts": {
"build": "snowpack build",
"start": "snowpack dev",
"test": "npm run test-style && npm run test-coverage",
"test-style": "standard --fix",
"test-spec": "web-test-runner",
"test-coverage": "web-test-runner --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basham/rx-ui-patterns.git"
},
"author": "Chris Basham <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/basham/rx-ui-patterns/issues"
},
"homepage": "https://github.com/basham/rx-ui-patterns#readme",
"devDependencies": {
"@esm-bundle/chai": "4.1.5",
"@snowpack/web-test-runner-plugin": "0.1.4",
"@web/test-runner": "0.9.11",
"snowpack": "2.17.1",
"standard": "16.0.3"
},
"dependencies": {
"rxjs": "7.0.0-beta.8",
"uce": "1.11.10"
},
"snowpack": {
"mount": {
"src": "/"
}
}
}