-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 945 Bytes
/
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
{
"name": "ar-gql",
"version": "3.1.1",
"main": "dist/index",
"types": "dist/index",
"author": "John Letey <[email protected]>",
"contributors": [
"Ros McMahon <[email protected]>",
"John Letey <[email protected]>"
],
"repository": "https://github.com/johnletey/arGql",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"postversion": "git push && git push --tags && npm run build && npm publish",
"test": "npm run build && mocha **/*.spec.ts",
"fmt": "prettier --write ."
},
"mocha": {
"extension": [
"ts"
],
"node-option": [
"require=tsx/cjs",
"no-warnings"
]
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"chai": "^5.0.3",
"mocha": "^11.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "latest",
"typescript": "latest"
}
}