-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "@steelbreeze/state",
"version": "8.3.1",
"description": "Finite state machine for TypeScript and JavaScript",
"main": "lib/node/index.js",
"typings": "lib/node/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "tsc -p .",
"test": "nyc --reporter=lcov mocha",
"package": "webpack",
"document": "typedoc",
"coverage": "CODECLIMATE_REPO_TOKEN=3561ab0fd4d1343b66e838d1644595020a60a7445bb2d24ddb051f6f2a6ad5c2 codeclimate-test-reporter < ./coverage/lcov.info"
},
"devDependencies": {
"@steelbreeze/types": "^1.0.0-rc.2",
"@types/mocha": "latest",
"@types/node": "latest",
"mocha": "latest",
"nyc": "latest",
"typescript": "latest",
"typedoc": "latest",
"webpack": "latest",
"webpack-cli": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steelbreeze/state.git"
},
"keywords": [
"finite",
"state",
"machine",
"pseudostate",
"region",
"orthogonal",
"TypeScript",
"JavaScript"
],
"author": "David Morris",
"license": "MIT",
"bugs": {
"url": "https://github.com/steelbreeze/state/issues"
},
"homepage": "https://steelbreeze.net/state"
}