-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
112 lines (112 loc) · 3.09 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "blueshell",
"version": "0.0.0-development",
"description": "A Behavior Tree implementation in modern Javascript",
"keywords": [
"behavior-tree",
"finite",
"state",
"machines",
"redux",
"immutable",
"reactive"
],
"homepage": "https://github.com/6RiverSystems/blueshell#readme",
"bugs": {
"url": "https://github.com/6RiverSystems/blueshell/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/6RiverSystems/blueshell.git"
},
"license": "ISC",
"author": "Joshua Chaitin-Pollak",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"lib",
"LICENSE"
],
"scripts": {
"build": "npm-run-all build:js",
"build:js": "tsc --pretty",
"build:watch": "tsc --pretty --watch",
"pretest": "npm-run-all build pretest:eslint pretest:prettier",
"test": "NODE_ENV=test nyc mocha ${MOCHA_OPTS}",
"pretest:eslint": "eslint --ext .ts,.js ${ESLINT_OPTS} .",
"pretest:prettier": "prettier --check ${PRETTIER_OPTS} .",
"test:no-cover": "NODE_ENV=test mocha",
"test:debug": "npm run test:no-cover -- --inspect-brk test",
"coverage": "NODE_ENV=test nyc report --reporter=text-lcov > coverage.lcov",
"prepublish": "npm-run-all build"
},
"config": {
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"test",
"chore"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": "Follow <type>(<scope>): <subject> pattern, max 100 chars.",
"autoFix": false
}
},
"dependencies": {
"archy": "1.0.0",
"source-map-support": "0.5.10",
"uuid": "3.3.2",
"ws": "7.2.1"
},
"devDependencies": {
"@6river/commitlint-config-6river": "^2.2.94",
"@6river/prettier-config": "^1.1.8",
"@commitlint/cli": "^13.2.1",
"@types/archy": "0.0.31",
"@types/chai": "4.2.8",
"@types/chai-as-promised": "7.1.2",
"@types/lodash": "4.14.121",
"@types/mocha": "5.2.6",
"@types/node": "^16.18.11",
"@types/reflect-metadata": "0.1.0",
"@types/sinon": "7.0.2",
"@types/uuid": "3.4.4",
"@types/ws": "7.2.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"dotparser": "0.4.0",
"eslint": "^8.32.0",
"eslint-config-6river": "^6.0.43",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-6river": "^1.0.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.0.5",
"husky": "1.3.1",
"jsdoc": "^3.6.7",
"mocha": "5.2.0",
"mocha-junit-reporter": "1.18.0",
"npm-run-all": "4.1.5",
"nyc": "15.0.0",
"prettier": "^2.8.3",
"sinon": "7.3.2",
"typedoc": "^0.22.6",
"typescript": "~4.3.5",
"validate-commit-msg": "2.14.0"
}
}