-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "warped-components",
"version": "0.3.0",
"description": "An opinionated way to build frontend applications",
"main": "index",
"module": "index.mjs",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"doctest": "sanctuary-doctest",
"lint": "sanctuary-lint",
"prepublishOnly": "rollup -c rollup.config.mjs",
"pretest": "rm -f index.js",
"release": "sanctuary-release",
"test": "npm run lint && sanctuary-test && npm run doctest",
"test:unit": "npx -n='--experimental-modules --no-warnings' oletus"
},
"repository": {
"type": "git",
"url": "git://github.com/wearereasonablepeople/warped-components.git"
},
"files": [
"/index.js",
"/index.mjs",
"/LICENSE",
"/package.json",
"/README.md"
],
"author": "Aldwin Vlasblom <aldwin.vlasblom@gmail.com> (https://github.com/Avaq)",
"license": "MIT",
"dependencies": {
"@cycle/run": "^5.1.0",
"react-collect": "^1.0.3",
"react-redux": "^7.1.1",
"redux": "^4.0.0"
},
"peerDependencies": {
"react": "^16.8.3",
"xstream": "^11.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"esm": "^3.0.68",
"oletus": "^3.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-test-renderer": "^16.4.1",
"rollup": "~1.18",
"sanctuary-scripts": "^3.2.0",
"sanctuary-show": "^2.0.0",
"sanctuary-type-classes": "^11.0.0",
"xstream": "^11.7.0"
}
}