forked from hsu-aut/STEP-to-JSON
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.89 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
{
"name": "step-to-json",
"version": "3.0.0",
"description": "A simple command line tool that extracts the system structure of a STEP (ISO 10303-44) file and outputs it as .json",
"main": "dist/parser.cjs.js",
"module": "dist/parser.esm.js",
"browser": "dist/parser.umd.js",
"scripts": {
"lint": "eslint src test",
"test": "mocha --require @babel/register",
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aljoshakoecher/STEP-to-JSON.git"
},
"keywords": [
"STEP",
"JSON",
"parser",
"assembly",
"system",
"structure"
],
"author": "Aljosha Köcher",
"license": "MIT",
"bugs": {
"url": "https://github.com/aljoshakoecher/STEP-to-JSON/issues"
},
"homepage": "https://github.com/aljoshakoecher/STEP-to-JSON#readme",
"dependencies": {
"cli-progress": "^3.12.0",
"colors": "^1.4.0",
"rxjs": "^7.8.1",
"uuid": "^9.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.3",
"@babel/register": "^7.22.15",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"babel-loader": "^9.1.3",
"chai": "^4.3.10",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.5.0"
}
}