-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 942 Bytes
/
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
{
"name": "teadux",
"version": "1.3.1",
"description": "The Elm archicture + Redux",
"homepage": "https://github.com/gniquil/teadux",
"repository": {
"type": "git",
"url": "git+https://github.com/gniquil/teadux.git"
},
"bugs": "https://github.com/gniquil/teadux/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/jest": "^21.1.4",
"jest": "^21.2.1",
"redux": "^3.7.2",
"ts-jest": "^21.1.3",
"typescript": "^2.5.3"
},
"scripts": {
"start": "jest --watchAll --coverage",
"test": "jest",
"clean": "rm -rf dist",
"build": "yarn run clean && tsc"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"mapCoverage": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"]
}
}