forked from simsta6/transform-parameter-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
{
"name": "transform-parameter-builder",
"version": "0.1.0",
"description": "Transform parameters builder for imodel transformations service FilterByViewDefinition transformation",
"main": "lib/index.js",
"scripts": {
"build": "tsc && npm run copy:tests-assets",
"prebuild": "rimraf lib",
"start": "node ./lib/index.js",
"lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
"lint:fix": "eslint --fix -f visualstudio \"./src/**/*.ts\" 1>&2",
"test": "mocha \"./lib/tests/**/*.test.js\"",
"copy:tests-assets": "cpx \"./src/tests/assets/**/*.json\" \"./lib/tests/assets\""
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@itwin/core-bentley": "^3.0.0",
"@itwin/core-common": "^3.0.0",
"@itwin/core-geometry": "^3.0.0",
"@itwin/eslint-plugin": "^3.0.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.0",
"chai": "^4.3.7",
"eslint": "^7.0.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
},
"engines": {
"npm": ">=8",
"node": ">=16"
},
"dependencies": {
"cpx2": "^5.0.0"
}
}