-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.29 KB
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
{
"name": "machineto",
"version": "0.0.16",
"description": "Minimal (neto) implementation of a finite state machine in javascript",
"private": false,
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha ./test/*.tests.js",
"testling": "./node_modules/.bin/testling"
},
"dependencies": {},
"devDependencies": {
"blanket": "1.1.x",
"chai": "1.10.x",
"connect": "3.3.x",
"grunt": "0.4.x",
"grunt-blanket": "0.0.x",
"grunt-browserify": "3.2.x",
"grunt-bump": "0.0.x",
"grunt-contrib-clean": "0.6.x",
"grunt-contrib-copy": "0.7.x",
"grunt-contrib-jshint": "0.10.x",
"grunt-contrib-testem": "0.5.x",
"grunt-contrib-uglify": "0.6.x",
"grunt-conventional-changelog": "1.1.x",
"grunt-coveralls": "1.0.x",
"grunt-mocha-test": "0.12.x",
"grunt-npm": "0.0.x",
"grunt-release": "0.7.x",
"grunt-string-replace": "1.0.x",
"grunt-verb": "0.2.x",
"load-grunt-tasks": "1.0.x",
"mocha-lcov-reporter": "0.0.x",
"phantomjs": "1.9.x",
"requirejs": "2.1.x",
"serve-static": "1.7.x",
"sinon": "1.12.x",
"testling": "1.7.x",
"time-grunt": "1.0.x",
"travis-cov": "0.2.x",
"zombie": "2.2.x"
},
"author": {
"name": "Itai Koren (@itkoren) <itkoren@gmail.com>",
"url": "https://github.com/itkoren"
},
"contributors": [
{
"name": "Michaeld (@miki2826) <miki2826@gmail.com>",
"url": "https://github.com/miki2826"
}
],
"main": "./dist/machineto.js",
"homepage": "https://github.com/itkoren/machineto",
"repository": {
"type": "git",
"url": "https://github.com/itkoren/machineto.git"
},
"bugs": {
"url": "https://github.com/itkoren/machinet/issues"
},
"keywords": [
"state machine",
"finite state machine",
"state",
"FSM",
"states"
],
"license": "MIT",
"engines": {
"node": ">= 0.10.x"
},
"config": {
"travis-cov": {
"threshold": 98
}
},
"testling": {
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"chrome/canary",
"firefox/16..latest",
"firefox/nightly",
"safari/6.0..latest",
"opera/11.0..latest",
"opera/next",
"iphone/6",
"ipad/6",
"android-browser/latest"
],
"harness": "mocha",
"files": "./test/machineto.tests.js"
}
}