forked from textlint/textlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "@textlint/feature-flag",
"version": "13.3.3",
"description": "textlint internal feature flag manager.",
"keywords": [
"textlint"
],
"homepage": "https://github.com/textlint/textlint/tree/master/packages/@textlint/feature-flag/",
"bugs": {
"url": "https://github.com/textlint/textlint/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/textlint.git"
},
"license": "MIT",
"author": "azu",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"module": "./module/src/index.js",
"directories": {
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/",
"!*.tsbuildinfo"
],
"scripts": {
"build": "tsc -b && tsc -b tsconfig.module.json",
"clean": "rimraf lib/ module/",
"prepack": "npm run --if-present build",
"test": "mocha",
"watch": "tsc -b --watch"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.16.18",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "~4.9.4"
}
}