-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.61 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
{
"name": "simfluxy",
"version": "0.0.0-development",
"description": "A simplified version of redux for state management including async operation in actions",
"main": "dist/index.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/register": "7.4.0",
"babel-loader": "8.0.5",
"chai": "4.2.0",
"clean-webpack-plugin": "2.0.1",
"codecov": "3.3.0",
"commitizen": "3.1.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.2",
"ghooks": "2.0.4",
"mocha": "6.1.4",
"npm-run-all": "4.1.5",
"nyc": "14.0.0",
"semantic-release": "15.13.12",
"uglifyjs-webpack-plugin": "2.1.2",
"validate-commit-msg": "2.14.0",
"webpack": "4.30.0",
"webpack-cli": "3.3.0"
},
"scripts": {
"release": "npm run semantic-release && npm publish",
"commit": "git-cz",
"test": "nyc ./node_modules/.bin/mocha --require @babel/register",
"watch:test": "./node_modules/.bin/mocha --require @babel/register --watch",
"build": "webpack",
"lint": "eslint src/.",
"lint:fix": "eslint src/. --fix",
"validate": "npm-run-all --parallel lint test build",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release",
"dummy": "ls"
},
"repository": {
"type": "git",
"url": "https://github.com/pushkar100/simfluxy.git"
},
"files": [
"dist"
],
"keywords": [
"flux",
"state",
"management",
"javascript",
"asynchronous",
"library",
"microlibrary",
"dispatch",
"store",
"globalstore"
],
"author": "Pushkar DK <pushkar100@gmail.com> (http://www.pushkardk.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushkar100/simfluxy/issues"
},
"homepage": "https://github.com/pushkar100/simfluxy#README",
"nyc": {
"check-coverage": true,
"branches": 100,
"lines": 100,
"statements": 100,
"functions": 100,
"reporter": [
"text",
"lcov"
]
},
"includes": [
"src"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run validate",
"commit-msg": "validate-commit-msg"
}
}
}