-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.05 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
{
"name": "@isogon/inject",
"version": "0.0.11",
"description": "A middleware that injects dependencies for redux action creators",
"private": false,
"main": "dist/index.js",
"scripts": {
"build": "yarn build:before && yarn build:actual",
"build:before": "yarn run clean && yarn lint",
"build:actual": "babel -s inline --source-root src/ -d dist src/",
"clean": "rimraf dist",
"lint": "concurrently \"yarn lint:src\" \"yarn lint:tests\"",
"lint:src": "eslint -c @isogon src/",
"lint:tests": "eslint -c @isogon/eslint-config/tests tests/",
"test:before": "yarn test:src && yarn build",
"test:actual": "yarn test:dist",
"test": "yarn test:before && yarn test:actual",
"test:src": "better-npm-run test:src",
"test:dist": "better-npm-run test:dist",
"manualPrepublish": "prepare-isogon-package . && yarn generate-lock-entry --production > yarn.lock"
},
"betterScripts": {
"test:src": {
"command": "mocha -r tests/prepare tests/**/*.spec.js"
},
"test:dist": {
"command": "better-npm-run test:src",
"env": {
"INJECT_TEST_TYPE": "dist"
}
}
},
"license": "Unlicense",
"devDependencies": {
"@isogon/eslint-config": "^0.0.13",
"@isogon/prepare-package": "^0.0.3",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"better-npm-run": "^0.0.14",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"concurrently": "^3.1.0",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-html": "^1.5.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"yarn": "^0.19.1"
},
"dependencies": {}
}