-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.97 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
{
"name": "easy-sm",
"version": "1.1.3",
"description": "An easy to use state machine",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"rebuilt": "npm run clean && npm run build",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"prepare": "npm run build",
"lint": "npm run tslint-check && tslint -p .",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"lint:fix": "npm run tslint-check && tslint -p . --fix"
},
"publishConfig": {
"access": "public"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
},
"author": "Yarin Vaknin <[email protected]> (http://github.com/yarinvak)",
"license": "ISC",
"dependencies": {
"ts-node": "^8.6.2"
},
"devDependencies": {
"@types/jest": "^24.9.0",
"jest": "^25.1.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5",
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.1.0-beta.11",
"husky": "^3.1.0",
"rimraf": "^3.0.0",
"travis-deploy-once": "^5.0.11",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.1.0"
}
}