-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.8 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@eldarlabs/cycle-ui",
"version": "0.0.0-semantically-released-after-ci-build",
"description": "Cycle UI Components library",
"author": "Eldar Labs (https://eldarlabs.com)",
"license": "MIT",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/eldarlabs/cycle-ui.git"
},
"bugs": {
"url": "https://github.com/eldarlabs/cycle-ui/issues"
},
"scripts": {
"commit": "git-cz",
"tsc": "tsc",
"tscw": "tsc --watch",
"typings": "typings",
"prepublish": "typings install && tsc",
"test": "mocha src/index.test.js",
"testw": "mocha src/index.test.js -w",
"sass": "cpx './src/**/*.scss' ./lib",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"release": {
"verifyConditions": "condition-circle"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"classnames": "^2.2.3",
"dialog-polyfill": "0.4.3",
"lodash": "^4.6.0",
"rx-combine-latest-obj": "^1.0.2"
},
"peerDependencies": {
"@cycle/core": "^6.0.0",
"@cycle/isolate": "^1.2.0",
"cycle-snabbdom": "^1.2.1",
"react-toolbox": "0.16.2",
"rx": "^4.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"condition-circle": "1.2.0",
"cpx": "^1.3.1",
"ghooks": "1.0.3",
"mocha": "^2.4.5",
"semantic-release": "^4.3.5",
"typescript": "^1.8.10",
"typings": "0.7.9"
},
"keywords": [
"cycle.js",
"cycle-ui",
"components",
"reactive",
"rxjs",
"rx",
"mvi",
"snabbdom",
"virtual-dom",
"typescript"
],
"homepage": "https://github.com/eldarlabs/cycle-ui#readme"
}