-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
147 lines (147 loc) · 4.63 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "redux-test-belt",
"version": "1.0.3",
"description": "JavaScript Testing utilities for Redux, the easy way.",
"keywords": [
"redux",
"reducer",
"state",
"testing",
"test utils",
"enzyme",
"jest",
"tdd",
"tests",
"predictable",
"functional",
"immutable",
"hot",
"live",
"assertion helpers",
"mocha",
"chai",
"ava"
],
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Workable/redux-test-belt.git"
},
"bugs": {
"url": "https://github.com/Workable/redux-test-belt/issues"
},
"scripts": {
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:examples": "cross-env BABEL_ENV=commonjs babel-node examples/buildAll.js",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/redux-test-belt.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/redux-test-belt.min.js",
"check:examples": "npm run build:examples && npm run lint:examples && npm run test:examples",
"check:src": "npm run lint && npm run test:dry",
"clean": "rimraf .nyc_output coverage lib dist report",
"coverage": "nyc report --reporter=text-lcov",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "npm run lint:src && npm run lint:examples",
"lint:src": "eslint --quiet src test build",
"lint:examples": "eslint --quiet examples",
"prepublish": "npm run clean && npm run check:src && npm run build",
"test": "nyc ava --no-cache --verbose",
"test:watch": "npm test -- --watch",
"test:dry": "ava --no-cache --verbose",
"test:dry:watch": "npm test -- --watch",
"test:examples": "cross-env BABEL_ENV=commonjs babel-node examples/testAll.js"
},
"authors": [
"Theodore Vorillas <[email protected]> (https://github.com/vorillaz)",
"Ioannis Manousos Katakis <[email protected]> (https://github.com/imktks)"
],
"npmName": "redux-test-belt",
"npmFileMap": [{
"basePath": "/dist/",
"files": [
"*.js"
]
}],
"browserify": {
"transform": [
"loose-envify"
]
},
"license": "MIT",
"nyc": {
"exclude": [
"tests",
"build",
"lib"
]
},
"ava": {
"files": [
"__tests__/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"presets": [
"es2015",
"stage-1"
],
"sourceMaps": "inline"
},
"devDependencies": {
"ava": "^0.25.0",
"ava-spec": "^1.0.1",
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.0",
"babel-plugin-check-es2015-constants": "^6.3.13",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.3.13",
"babel-plugin-transform-es2015-classes": "^6.3.13",
"babel-plugin-transform-es2015-computed-properties": "^6.3.13",
"babel-plugin-transform-es2015-destructuring": "^6.3.13",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.3.13",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-object-super": "^6.3.13",
"babel-plugin-transform-es2015-parameters": "^6.3.13",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.3.13",
"babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.3.13",
"coveralls": "^3.0.2",
"cross-env": "^1.0.8",
"eslint": "^2.12.0",
"eslint-plugin-babel": "^3.2.0",
"nyc": "^13.1.0",
"redux": "^3.3.1",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"webpack": "2.3.3"
},
"dependencies": {
"lodash": "^4.17.11"
}
}