-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 909 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
{
"name": "@desmos/prettier-plugin-fluent",
"version": "1.0.3",
"description": "",
"main": "dist/index.js",
"scripts": {
"pretest": "run-s build",
"test": "mocha dist/**/*.test.js",
"build": "rm -rf build && tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"prettier": "prettier --write **/*.ts **/*.js",
"prettier-check": "prettier --check **/*.ts **/*.js",
"typecheck": "tsc --noEmit -p tsconfig.json",
"prepublishOnly": "run-s test",
"prepare": "run-s build",
"precommit": "run-p prettier typecheck"
},
"files": [
"**/*.ts",
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fluent/syntax": "^0.19.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/mocha": "^10",
"@types/node": "^18",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.x"
}
}