-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
{
"name": "feelin",
"version": "4.3.0",
"description": "A FEEL parser and interpreter",
"author": "Nico Rehwaldt <git_nikku@nixis.de>",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/chai": "^4.3.20",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.10",
"chai": "^4.5.0",
"chokidar-cli": "^3.0.0",
"eslint": "^9.17.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"fast-glob": "^3.3.2",
"mocha": "^10.8.2",
"npm-run-all2": "^7.0.2",
"rollup": "^4.29.1",
"saxen": "^10.0.0",
"source-map-support": "^0.5.21",
"strip-indent": "^4.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"dependencies": {
"@lezer/lr": "^1.4.2",
"lezer-feel": "^1.7.0",
"luxon": "^3.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nikku/feelin"
},
"engines": {
"node": "*"
},
"sideEffects": false,
"scripts": {
"all": "run-s lint build generate-typings test lint:types",
"lint": "eslint .",
"lint:types": "tsc --noEmit --lib es2019 test/types.ts",
"build": "rollup -c --bundleConfigAsCjs",
"build:dev": "npm run build -- --watch",
"dev": "run-p *:dev",
"generate-typings": "tsc --emitDeclarationOnly --declaration --outDir dist",
"prepare": "run-s build generate-typings",
"test": "mocha -r source-map-support/register test/*-spec.js",
"test:dev": "chokidar '{dist,test}/**/*.js' -c 'npm test'",
"tck": "run-s tck:extract tck:test",
"tck:extract": "node tasks/extract-tck-tests.js",
"tck:test": "mocha --reporter=test/reporters/tck.cjs -r source-map-support/register test/tck/*.js"
},
"files": [
"dist"
]
}