-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 954 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 954 Bytes
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
{
"name": "statechartjs",
"version": "0.3.0",
"description": "A javascript implementation of a Harel Statechart.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "http://github.com/burrows/statechart.js.git"
},
"scripts": {
"test": "make"
},
"keywords": [
"statechart",
"state machine",
"routing",
"router"
],
"author": "Corey Burrows <corey.burrows@gmail.com>",
"license": "MIT",
"devDependencies": {
"jasmine": "2.3.2",
"jshint": "1.1",
"karma": "1.2.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "0.1.7",
"karma-jasmine": "0.3.6",
"karma-jasmine-html-reporter": "0.1.8",
"karma-phantomjs-launcher": "^1.0.2",
"karma-safari-launcher": "0.1.1",
"karma-webpack": "1.7.0",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "1.12.6"
},
"dependencies": {
"html5-history-api": "4.2.8",
"shallow-equals": "0.0.0"
}
}