-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
36 lines (36 loc) · 885 Bytes
/
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
{
"name": "typestate",
"version": "1.0.6",
"description": "A small finite state machine implementation in TypeScript.",
"main": "dist/typestate-node.js",
"typings": "dist/typestate-node.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/eonarheim/TypeState.git"
},
"scripts": {
"all": "grunt"
},
"keywords": [
"Finite",
"State",
"Machine",
"TypeScript"
],
"author": "Erik Onarheim",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/eonarheim/TypeState/issues"
},
"homepage": "https://github.com/eonarheim/TypeState",
"devDependencies": {
"grunt": "^1.0.3",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-minified": "0.0.6",
"grunt-shell": "^2.1.0",
"jasmine": "^2.4.1",
"typescript": "^3.1.3"
}
}