forked from sony/cdp-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@cdp/result",
"description": "result utility module",
"version": "0.9.18",
"author": "Shin Ogata",
"dependencies": {
"@cdp/core-utils": "file:../utils"
},
"keywords": [
"CDP",
"TypeScript",
"javascript"
],
"license": "UNLICENSED",
"main": "dist/result",
"module": "dist/result.mjs",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Shin-Ogata/fieldwork.git"
},
"scripts": {
"build": "run-s -l build:*",
"build:src": "run-s compile:src bundle:src",
"build:test": "run-s compile:test bundle:test",
"bundle": "run-p bundle:*",
"bundle:src": "run-p bundle:src:*",
"bundle:src:built": "rollup -c ./build.config.js",
"bundle:test": "rollup -c ./tests/test.config.js",
"ci": "run-s -l clean:all build:src build:test lint unit-test:ci typedoc",
"clean": "cdp-task clean",
"clean:all": "cdp-task clean -a",
"clean:doc": "cdp-task clean -d",
"clean:doc:a": "cdp-task clean -t ./docs/typedoc",
"clean:doc:c": "cdp-task clean -t ./docs/reports/coverage",
"clean:doc:m": "cdp-task clean -t ./docs/reports/metrics",
"clear": "npm run clean && npm run clean:doc && cdp-task clean -t ./node_modules",
"compile": "run-s compile:*",
"compile:src": "tsc -p ./tsconfig.json",
"compile:test": "tsc -p ./tests/tsconfig.json",
"debug": "npm run compile && run-p unit-test watch",
"lint": "eslint src tests/unit -c ../../../../config/lint/tslint.mjs",
"metrics": "run-s -l metrics:*",
"metrics:file": "cdp-task metrics -r file",
"metrics:module": "cdp-task metrics -r module",
"set-version": "cdp-task set-version",
"start": "npm run debug",
"test": "run-s -l lint unit-test:ci",
"typedoc": "npm run clean:doc:a && typedoc src --options ../../../../config/doc/typedoc.js",
"unit-test": "cdp-task ut -c ./tests/test.config.js",
"unit-test:ci": "cdp-task ut ci -c ./tests/test.config.js -s",
"ut": "npm run unit-test",
"ut:ci": "npm run unit-test:ci",
"watch": "run-p watch:*",
"watch:bundle:": "npm run bundle:test -- -w",
"watch:ts": "run-p watch:ts:*",
"watch:ts:src": "npm run compile:src -- -w",
"watch:ts:test": "npm run compile:test -- -w"
},
"types": "types/index.d.ts"
}