-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 KB
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": "flowquery",
"version": "1.0.63",
"description": "A declarative query language for data processing pipelines.",
"main": "dist/index.node.js",
"types": "dist/index.node.d.ts",
"sideEffects": true,
"exports": {
".": {
"types": "./dist/index.node.d.ts",
"import": "./dist/index.node.js",
"require": "./dist/index.node.js"
},
"./browser": {
"import": "./dist/flowquery.min.js",
"require": "./dist/flowquery.min.js"
},
"./extensibility": {
"types": "./dist/extensibility.d.ts",
"import": "./dist/extensibility.js",
"require": "./dist/extensibility.js"
}
},
"files": [
"dist"
],
"bin": {
"flowquery": "./dist/index.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest",
"build": "tsc && webpack && copyfiles -f dist/flowquery.min.js flowquery-vscode/flowQueryEngine/",
"build:node": "tsc",
"build:browser": "webpack",
"main": "tsc & node dist/index.js",
"docs": "typedoc --out docs/api src/index.node.ts",
"prepare": "husky",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"lint-staged": {
"*.{ts,js}": "prettier --write",
"*.{json,md}": "prettier --write"
},
"keywords": [],
"author": "Niclas Kjäll-Ohlsson",
"license": "ISC",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^29.5.14",
"@types/node": "^25.0.3",
"copyfiles": "^2.4.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.28.14",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"overrides": {
"serialize-javascript": "^7.0.3"
}
}