-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.03 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
{
"name": "18dux",
"version": "0.0.1",
"description": "Redux store meant to be used as a state store for 18xx games",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": "[email protected]:18xx-maker/18dux.git",
"author": "Christopher Giroir <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup -c",
"check": "tsc --noEmit",
"clean": "rimraf coverage dist types",
"lint": "eslint --ext js,ts src rollup.config.js",
"prepare": "yarn clean && yarn lint && yarn test",
"test": "jest",
"test:cov": "yarn run test --coverage && open-cli coverage/lcov-report/index.html",
"test:watch": "yarn run test --watch"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^25.1.2",
"@types/ramda": "^0.26.41",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"open-cli": "^5.0.0",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.7.5"
},
"dependencies": {
"ramda": "^0.27.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"jest": {
"moduleNameMapper": {
"^18dux(.*)$": "<rootDir>/src$1"
}
}
}