-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.47 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cycle-react-driver",
"version": "0.0.0-semantic-release",
"description": "A CycleJS driver that can interact with ReactJS components.",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "cross-env BABEL_ENV=test mocha --compilers js:babel-core/register --require test/utils/setup.js",
"test:with-coverage": "npm run clean:coverage && cross-env BABEL_ENV=test nyc --reporter=lcov npm test",
"test:check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"test:publish-coverage": "codecov",
"prebuild": "npm run clean",
"build": "npm-run-all --parallel build:*",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack --config umd-build.webpack.config.js --output-filename cycle-react-driver.js",
"build:umd.min": "webpack --config umd-build.webpack.config.js -p --output-filename cycle-react-driver.min.js",
"prepublish": "in-install || npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"clean": "npm-run-all --parallel clean:*",
"clean:build": "rimraf dist lib",
"clean:coverage": "rimraf .nyc_output coverage",
"examples": "webpack-dev-server --config examples.webpack.config.js --content-base examples/ --inline"
},
"repository": {
"type": "git",
"url": "https://github.com/BenoitAverty/cycle-react-driver.git"
},
"keywords": [],
"author": {
"name": "Benoit Averty",
"email": "[email protected]",
"website": "http://github.com/BenoitAverty"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BenoitAverty/cycle-react-driver/issues"
},
"homepage": "https://github.com/BenoitAverty/cycle-react-driver#readme",
"devDependencies": {
"@cycle/rxjs-run": "^3.0.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.0",
"babel-plugin-rewire": "^1.0.0-rc-4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.0",
"codecov": "^1.0.1",
"commitizen": "^2.8.2",
"cross-env": "^2.0.0",
"cz-conventional-changelog": "^1.1.6",
"enzyme": "^2.3.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"ghooks": "^1.2.4",
"jsdom": "^9.4.1",
"mocha": "^3.0.1",
"npm-run-all": "^2.1.2",
"nyc": "^8.1.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"rimraf": "^2.5.2",
"rxjs": "5.0.0-beta.10",
"semantic-release": "^4.3.5",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"validate-commit-msg": "^2.6.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"@cycle/rxjs-adapter": "^3.0.1",
"in-publish": "^2.0.0"
},
"peerDependencies": {
"rxjs": "^5.0.0-beta.10",
"react": "^15.3.0",
"react-dom": "^15.3.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:with-coverage -- -- -R dot && npm run test:check-coverage",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"instrument": false,
"sourceMap": false
}
}