forked from angular/angular-ja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 953 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
{
"name": "angular-ja",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/angular/angular-ja",
"author": "Suguru Inatomi <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "rm -rf build-out && mkdir build-out",
"build": "docker-compose run --rm build-aio",
"build:docker": "docker-compose build --parallel",
"lint": "yarn ~~textlint",
"lint:fix": "yarn ~~textlint --fix",
"start": "docker-compose up --remove-orphans watch-aio",
"test": "npm run lint && yarn test:patch",
"test:patch": "git apply --check --directory origin ./scripts/git-patch/*.patch",
"update-origin": "./update-origin.sh",
"~~textlint": "textlint 'aio-ja/**/!(*.en).md'"
},
"devDependencies": {
"glob": "^7.1.2",
"prh-rules": "prh/rules",
"textlint": "^11.0.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-prh": "^5.0.1"
}
}