UNPKG

2.1 kBJSONView Raw
1{
2 "name": "scxml",
3 "version": "3.0.2",
4 "description": "An implementation of SCXML in JavaScript.",
5 "keywords": [
6 "scxml",
7 "statecharts",
8 "w3c",
9 "javascript"
10 ],
11 "maintainers": [
12 {
13 "name": "Jacob Beard",
14 "email": "jbeard4@cs.mcgill.ca",
15 "url": "http://echo-flow.com"
16 }
17 ],
18 "bugs": {
19 "email": "jbeard4@cs.mcgill.ca",
20 "url": "https://github.com/jbeard4/SCION/issues"
21 },
22 "licenses": [
23 {
24 "type": "Apache-2.0",
25 "url": "https://github.com/jbeard4/SCION/blob/master/LICENSE.txt"
26 }
27 ],
28 "repository": {
29 "type": "git",
30 "url": "https://github.com/jbeard4/SCION.git"
31 },
32 "implements": [
33 "http://www.w3.org/TR/scxml/"
34 ],
35 "dependencies": {
36 "esprima": "2.7.2",
37 "optimist": "0.6.1",
38 "sax": "1.2.1",
39 "scion-core": "1.2.1",
40 "text-to-js-identifier": "0.0.4"
41 },
42 "devDependencies": {
43 "async": "^1.5.2",
44 "babel-plugin-transform-es2015-modules-umd": "^6.8.0",
45 "babel-polyfill": "^6.9.1",
46 "babel-preset-es2015": "^6.9.0",
47 "ejs": "^2.4.2",
48 "express": "^4.14.0",
49 "glob": "^7.0.5",
50 "grunt": "^1.0.1",
51 "grunt-babel": "^6.0.0",
52 "grunt-browserify": "^5.0.0",
53 "grunt-contrib-concat": "^1.0.1",
54 "grunt-contrib-nodeunit": "^1.0.0",
55 "grunt-contrib-uglify": "^1.0.1",
56 "grunt-contrib-watch": "^1.0.0",
57 "grunt-express-server": "^0.5.3",
58 "grunt-git": "^1.0.0",
59 "grunt-release": "^0.14.0",
60 "grunt-run": "^0.6.0",
61 "grunt-saucelabs": "^8.6.3",
62 "load-grunt-tasks": "^3.5.0",
63 "minimist": "^1.2.0",
64 "nodeunit": "^0.9.1",
65 "request": "^2.74.0",
66 "scxml-test-framework": "^1.0.2",
67 "underscore": "^1.8.3",
68 "vm-browserify2": "0.0.6"
69 },
70 "engines": {
71 "node": ">=4.2.2",
72 "npm": ">=2.0.0"
73 },
74 "main": "./lib/runtime/facade",
75 "scripts": {
76 "test": "grunt build test"
77 },
78 "browser": {
79 "vm": "vm-browserify2"
80 },
81 "filename": "scxml.min.js",
82 "npmName": "scion",
83 "npmFileMap": [
84 {
85 "basePath": "dist",
86 "files": [
87 "scxml.js",
88 "scxml.min.js"
89 ]
90 }
91 ]
92}