-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.33 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
104
105
106
107
108
109
110
111
112
{
"name": "single-source",
"version": "1.0.5",
"description": "simple state managment",
"main": "dist/single-source.js",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"lint": "eslint --ext js --ext jsx src || exit 0",
"watch:lint": "esw --color -w",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "npm run unittest && npm run coveralls && npm run lint",
"unittest": "export NODE_ENV=test && jest",
"watch:test": "npm run unittest -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/christianheyn/single-source.git"
},
"bugs": {
"url": "https://github.com/christianheyn/single-source/issues",
"email": "[email protected]"
},
"author": {
"name": "Christian Heyn",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/christianheyn/single-source",
"keywords": [
"state",
"management",
"store",
"data",
"createStore",
"subscribe",
"subscription",
"dispatch",
"path",
"payload"
],
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "^6.23.0",
"babel-runtime": "^6.22.0",
"coveralls": "^3.0.0",
"css-loader": "0.26.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-xo": "^0.18.2",
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.1.0",
"eslint-watch": "^3.1.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.26.0",
"jest": "^20.0.4",
"jest-webpack-alias": "^3.3.3",
"loglevel": "^1.4.1",
"postcss-loader": "^1.2.2",
"react": "^16.3.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^16.3.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^16.3.1",
"sass-loader": "^6.0.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "^3.3.0",
"webpack-cleanup-plugin": "^0.4.2",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.1"
},
"jest": {
"verbose": true,
"bail": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpe?g|png|gif|eot|otf|webp|svg|ttf|woff2?|mp[34]|webm|wav|m4a|aac|oga)$": "<rootDir>/mocks__/fileMock.js",
"\\.(css|less|s[ac]ss|styl)$": "<rootDir>/mocks__/styleMock.js",
"test": "<rootDir>/src/_test_/index.js"
},
"setupFiles": [
"<rootDir>/test-utils/shim.js",
"<rootDir>/test-utils/setup.js"
],
"coveragePathIgnorePatterns": [
"test-utils/shim.js",
"test-utils/setup.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
}
}