-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.9 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
{
"name": "stated-js",
"version": "0.1.45",
"license": "Apache-2.0",
"description": "JSONata embedded in JSON",
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"exports": {
".": {
"import": "./dist/bundle.mjs",
"require": "./dist/bundle-common-js.cjs",
"types": "./dist/src/index.d.ts"
},
"./dist/src/TemplateProcessor.js": "./dist/src/TemplateProcessor.js",
"./dist/src/CliCore.js": "./dist/src/CliCore.js",
"./dist/src/StatedREPL.js": "./dist/src/StatedREPL.js",
"./dist/src/TestUtils.js": "./dist/src/TestUtils.js",
"./dist/src/DependencyFinder.js": "./dist/src/DependencyFinder.js",
"./dist/src/JsonPointer.js": "./dist/src/JsonPointer.js",
"./dist/src/utils/stringify.js": "./dist/src/utils/stringify.js",
"./dist/src/utils/debounce.js": "./dist/src/utils/debounce.js",
"./dist/src/utils/rateLimit.js": "./dist/src/utils/rateLimit.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc && npm run webpack && npm run docs",
"webpack": "webpack && webpack --config webpack.config.cjs.js && webpack --config webpack.nodeSingleBin.cjs.js",
"test": "npm run clean && npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles",
"test:bun": "npm run clean && npm run build && bun test",
"test-fast": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"stated": "node --experimental-vm-modules dist/stated.js",
"docs": "typedoc --out docs src/*"
},
"bin": {
"stated": "./dist/stated.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cisco-open/stated"
},
"keywords": [
"jsonata",
"json",
"config",
"state",
"dag"
],
"author": "Geoff Hendrey <ghendreyl@cisco.com>",
"dependencies": {
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.195",
"@types/lodash-es": "^4.17.12",
"@types/minimist": "^1.2.5",
"chalk": "^5.3.0",
"flatbuffers": "^23.5.26",
"js-yaml": "^4.1.0",
"json-colorizer": "^2.2.2",
"jsonata": "2.0.4",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"minimist": "^1.2.8",
"pulsar-flex": "^1.1.1",
"readline": "^1.3.0",
"repl": "^0.1.3",
"string-argv": "^0.3.2",
"webpack-node-externals": "^3.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/preset-env": "^7.22.20",
"@jest/globals": "latest",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"jest": "^29.7.0",
"path-browserify": "^1.0.1",
"rimraf": "^5.0.7",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"files": [
"LICENSE",
"dist/",
"docs/"
],
"jest": {
"transform": {}
},
"type": "module",
"browser": {
"child_process": false
}
}