-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
68 lines (68 loc) · 2.31 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
{
"name": "@stekoe/ocl.js",
"version": "1.5.0-SNAPSHOT",
"description": "Object Constraint Language parser written in JavaScript.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run test && npx tsc",
"build:examples": "npm run build:examples:node.js && npm run build:examples:typescript",
"build:examples:node.js": "cd examples/node.js && npm ci && npm run build",
"build:examples:typescript": "cd examples/ts && npm ci && npm run build",
"clean": "npm run clean:dist && npm run clean:examples",
"clean:dist": "npx rimraf -- dist",
"clean:docs": "npx rimraf -- doc-test/**/*.gen.md",
"clean:examples": "npx rimraf -- examples/ts/dist examples/webpack/dist",
"generate:docs": "npm run clean:docs && node docs-generator/generateDocs.js",
"generate:parser": "npx rimraf -- ./lib/components/parser/parser.ts && ts-node -O {\\\"module\\\":\\\"commonjs\\\"} generator/oclParserGenerator.ts",
"lint": "eslint . --ext .ts",
"prepare:release": "npx cross-env RUN_SLOW_TESTS=true npm run build && npm run build:examples",
"test": "npm run generate:parser && npm run test:fast",
"test:fast": "npx ts-mocha 'test/**/*.spec.ts'",
"test:coverage": "npx rimraf -- coverage && nyc ts-mocha 'test/**/*.spec.ts' && npx rimraf -- .nyc_output"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/I[A-Z][a-z]*.ts",
"**/index.ts"
],
"include": [
"**/lib"
],
"reporter": [
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "[email protected]:SteKoe/ocl.js.git"
},
"author": "Stephan Köninger <[email protected]>",
"homepage": "https://github.com/SteKoe/ocl.js#readme",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^10.0.1",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"chai": "^4.3.4",
"glob": "^11.0.0",
"jison-gho": "^0.6.1-216",
"minimist": ">=1.2.5",
"mkdirp": "^3.0.0",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"rimraf": "^6.0.0",
"semantic-release": "24.2.1",
"ts-lint": "^4.5.1",
"ts-mocha": "^10.0.0",
"tslint-loader": "^3.6.0",
"typescript": "^5.5.3"
}
}