scjson 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ <p align="center"><img src="../scjson.png" alt="scjson logo" width="200"/></p>
2
+
1
3
  # scjson JavaScript Package
2
4
 
3
5
  This directory contains the JavaScript implementation of **scjson**, a format for representing SCXML state machines in JSON. The package provides a command line interface to convert between `.scxml` and `.scjson` files and to validate documents against the project's schema.
@@ -329,4 +331,4 @@ docker pull iraa/scjson:latest
329
331
  ```
330
332
 
331
333
 
332
- All source code in this directory is released under the BSD\u00A01-Clause license. See [LICENSE](./LICENSE) and [LEGAL.md](./LEGAL.md) for details.
334
+ All source code in this directory is released under the BSD 1-Clause license. See [LICENSE](./LICENSE) and [LEGAL.md](./LEGAL.md) for details.
@@ -1,10 +1,10 @@
1
1
  /**
2
- * scjsonProps.ts : Properties runtime file for scjson types
2
+ * Agent Name: ts-props
3
3
  *
4
4
  * Part of the scjson project.
5
5
  * Developed by Softoboros Technology Inc.
6
6
  * Licensed under the BSD 1-Clause License.
7
- */
7
+ */
8
8
  /**
9
9
  * update a datamodel location with an expression or value.
10
10
  */
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
  /**
3
- * scjsonProps.ts : Properties runtime file for scjson types
3
+ * Agent Name: ts-props
4
4
  *
5
5
  * Part of the scjson project.
6
6
  * Developed by Softoboros Technology Inc.
7
7
  * Licensed under the BSD 1-Clause License.
8
- */
8
+ */
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.TransitionTypeDatatypeProps = exports.defaultTransition = exports.defaultState = exports.defaultSend = exports.defaultScxml = exports.defaultScript = exports.defaultRaise = exports.defaultParam = exports.defaultParallel = exports.defaultOnexit = exports.defaultOnentry = exports.defaultLog = exports.defaultInvoke = exports.defaultInitial = exports.defaultIf = exports.HistoryTypeDatatypeProps = exports.defaultHistory = exports.defaultForeach = exports.defaultFinalize = exports.defaultFinal = exports.ExmodeDatatypeProps = exports.defaultElseif = exports.defaultElse = exports.defaultDonedata = exports.defaultDatamodel = exports.defaultData = exports.defaultContent = exports.defaultCancel = exports.BooleanDatatypeProps = exports.BindingDatatypeProps = exports.AssignTypeDatatypeProps = exports.defaultAssign = void 0;
11
11
  /** Instantiate a default object of type AssignProps */
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "scjson",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "A JSON-based serialization of SCXML (State Chart XML).",
5
5
  "author": "Softoboros Technology Inc. <ira@softoboros.com>",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/SoftOboros/scjson"
9
+ },
6
10
  "license": "BSD-1-Clause",
7
11
  "main": "dist/index.js",
8
12
  "types": "dist/index.d.ts",