forked from devalpha-io/devalpha-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "devalpha",
"version": "0.3.5",
"repository": "https://github.com/fhqvst/devalpha",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"@types/highland": "^2.12.0",
"@types/mathjs": "4.4.1",
"@types/node": "^10.5.8",
"decimal.js": "^10.0.0",
"highland": "^3.0.0-beta.6",
"redux": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"coveralls": "^3.0.2",
"eventsource": "^1.0.7",
"jest": "^23.6.0",
"ts-jest": "23.1.3",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.0"
},
"scripts": {
"build": "NODE_ENV=production tsc",
"dev": "NODE_ENV=development tsc --watch",
"start": "npm run build",
"lint": "tslint -c tslint.json 'lib/**/*.ts'",
"test": "NODE_ENV=test jest"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts)",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"coveragePathIgnorePatterns": [
"node_modules",
"dist",
"__tests__"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}