-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.31 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": "reactive-goban",
"version": "0.0.0-semantic-release",
"description": "A Javascript representation of a Go game and a React component able to render it",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "cross-env BABEL_ENV=test mocha --compilers js:babel-core/register --recursive",
"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 reactive-goban.js",
"build:umd.min": "webpack -p --config umd-build.webpack.config.js --output-filename reactive-goban.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/reactive-goban.git"
},
"keywords": [
"Go",
"sgf",
"react",
"component",
"goban"
],
"author": "Benoit AVERTY",
"license": "MIT",
"bugs": {
"url": "https://github.com/BenoitAverty/reactive-goban/issues"
},
"homepage": "https://github.com/BenoitAverty/reactive-goban#readme",
"devDependencies": {
"@cycle/core": "^6.0.3",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^2.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"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.5.0",
"chai": "^3.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",
"mocha": "^3.0.0",
"npm-run-all": "^3.0.0",
"nyc": "^8.1.0",
"rimraf": "^2.5.2",
"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/dom": "^9.4.0",
"in-publish": "^2.0.0",
"deep-freeze": "0.0.1",
"diacritics": "^1.2.3",
"lodash": "^4.13.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"rx": "^4.1.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,
"include": [
"src/GoGame"
]
}
}