-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.01 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
74
75
76
77
78
79
80
81
82
{
"name": "ts-fence",
"version": "1.2.1",
"description": "typescript statemachine",
"private": false,
"main": "dist/lib/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc",
"test": "jest",
"test:prod": "npm run lint && npm run test -- --no-cache",
"test:coverage": "jest --coverage",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"travis-deploy-once": "travis-deploy-once"
},
"repository": "https://github.com/ovaar/ts-fence",
"author": {
"name": "Thomas Reynders",
"url": "https://github.com/ovaar"
},
"keywords": [
"statemachine",
"typescript",
"finite state machine",
"fsm",
"state",
"workflow"
],
"license": "MIT",
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@semantic-release/changelog": "3.0.6",
"@semantic-release/commit-analyzer": "6.3.3",
"@semantic-release/git": "7.0.18",
"@semantic-release/npm": "5.3.4",
"@semantic-release/release-notes-generator": "7.3.5",
"@types/jest": "24.0.24",
"coveralls": "3.0.9",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"prettier": "1.19.1",
"semantic-release": "15.14.0",
"ts-jest": "24.2.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"typescript": "3.7.4"
},
"dependencies": {}
}