-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 2.14 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
{
"name": "redux-actions-assertions-src",
"description": "Assertions for redux actions testing",
"scripts": {
"lint": "eslint src test",
"test:index": "mocha --compilers js:babel-register --reporter spec test/*.js",
"test:chai": "mocha --compilers js:babel-register --reporter spec test/chai/*.js",
"test:expect": "mocha --compilers js:babel-register --reporter spec test/expect/*.js",
"test:expectjs": "mocha --compilers js:babel-register --reporter spec test/expectjs/*.js",
"test:jasmine": "jasmine JASMINE_CONFIG_PATH=test/jasmine/jasmine.json",
"test:jest": "jest --config test/jest/jest.json",
"test:should": "mocha --compilers js:babel-register --reporter spec test/should/*.js",
"test:tape": "tape --require babel-register test/tape/*.js",
"test": "npm run test:index && npm run test:chai && npm run test:expect && npm run test:expectjs && npm run test:jasmine && npm run test:jest && npm run test:should && npm run test:tape",
"copy-resources": "cp README.md ./build && cp LICENSE ./build",
"build": "rimraf build && babel src --out-dir build --copy-files ",
"prepublish": "npm run build && npm run copy-resources",
"docs:build": "cd documentation && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmitry-zaets/redux-actions-assertions.git"
},
"authors": [
"Dmitry Zaets",
"Yann Torres"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/redux-things/redux-actions-assertions/issues"
},
"homepage": "https://github.com/redux-things/redux-actions-assertions#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.8.0",
"expect": "^1.20.1",
"expect.js": "^0.3.1",
"jasmine": "^2.5.2",
"jest": "^18.1.0",
"mocha": "^2.4.5",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.2",
"should": "^8.3.2",
"tape": "^4.6.0"
},
"dependencies": {
"redux-actions-assertions-js": "^1.1.0"
}
}