This repository has been archived by the owner on Sep 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
134 lines (134 loc) · 3.4 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "scxml",
"version": "4.3.1",
"description": "An implementation of SCXML in JavaScript.",
"keywords": [
"scxml",
"statecharts",
"w3c",
"javascript"
],
"types": "tsd/index.d.ts",
"maintainers": [
{
"name": "Jacob Beard",
"email": "[email protected]"
}
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/jbeard4/SCION/issues"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/jbeard4/SCION/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jbeard4/SCION.git"
},
"implements": [
"http://www.w3.org/TR/scxml/"
],
"dependencies": {
"@jbeard/sax": "1.3.2",
"scion-core": "2.6.0",
"escodegen": "^1.8.1",
"esprima": "2.7.2",
"jsdom": "^11.1.0",
"optimist": "^0.6.1",
"text-to-js-identifier": "0.0.4",
"xmlserializer": "^0.6.0",
"opencollective": "^1.0.3"
},
"devDependencies": {
"async": "^1.5.2",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"ejs": "^2.4.2",
"eslint": "^4.19.1",
"express": "^4.14.0",
"glob": "^7.0.5",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-express-server": "^0.5.3",
"grunt-git": "^1.0.0",
"grunt-release": "^0.14.0",
"grunt-run": "^0.6.0",
"grunt-saucelabs": "^8.6.3",
"load-grunt-tasks": "^3.5.0",
"typedoc": "^0.11.1",
"minimist": "^1.2.0",
"nodeunit": "^0.9.1",
"request": "^2.74.0",
"scxml-test-framework": "2.0.0",
"uglify-js": "^2.8.21",
"underscore": "^1.8.3",
"vm-browserify2": "0.0.6",
"watchify": "^3.9.0",
"scion-core-legacy": "1.0.0"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=2.0.0"
},
"browser": {
"fs": "./lib/runtime/platform-bootstrap/browser/fs",
"jsdom": "./lib/runtime/platform-bootstrap/browser/jsdom",
"vm": "vm-browserify2"
},
"main": "./lib/runtime/facade",
"scripts": {
"postversion": "git push --follow-tags && npm publish",
"test": "grunt build test",
"bundle": "browserify -d lib/runtime/facade.js -o dist/scxml.js -s scxml -v",
"bundle-debug-version": "browserify -d lib/runtime/debug.js -o dist/scxml.debug.js -s scxml -v",
"uglify": "uglifyjs dist/scxml.js -o dist/scxml.min.js",
"build": "npm run bundle && npm run uglify && cp node_modules/scion-core/dist/* dist/",
"watch": "watchify -d lib/runtime/facade.js -o dist/scxml.js -s scxml -v",
"lint": "eslint lib/",
"docs": "typedoc --module commonjs --includeDeclarations --out docs/ ./tsd/index.d.ts --readme README.md",
"postinstall": "opencollective postinstall"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"filename": "scxml.min.js",
"npmName": "scion",
"npmFileMap": [
{
"basePath": "dist",
"files": [
"scxml.js",
"scxml.min.js",
"scion.js",
"scion.min.js"
]
}
],
"bin": {
"scxml": "bin/cli.js"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/SCION"
}
}