-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "@solothought/text2obj",
"version": "1.0.3",
"description": "Parse text to object for diagraming, automation and other purpose",
"main": "./src/index.js",
"exports": {
"./flow": "./src/flow/flow.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jasmine src/flow/tests/*_test.js",
"build": "rollup -c",
"build:flow": "rollup -c src/flow/rollup.config.js",
"build:hierarchy": "rollup -c src/hierarchy/rollup.config.js",
"build:mindmap": "rollup -c src/mindmap/rollup.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/solothought/text2obj.git"
},
"keywords": ["algorithm","flowchart","diagrams","automation"],
"author": "Amit Gupta (https://solothought.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/NaturalIntelligence/text2obj/issues"
},
"homepage": "https://github.com/NaturalIntelligence/text2obj#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/NaturalIntelligence"
},
{
"type": "paypal",
"url": "https://paypal.me/naturalintelligence"
}
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.22.5"
}
}