UNPKG

step-to-json

Version:

A simple command line tool that extracts the system structure of a STEP (ISO 10303-44) file and outputs it as .json

62 lines (61 loc) 1.93 kB
{ "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" } }