-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.15 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
62
63
64
65
{
"name": "@dmail/signal",
"version": "9.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dmail/signal"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "index.js",
"files": [
"dist",
"src",
"index.js"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {},
"devDependencies": {
"@dmail/expect": "2.9.0",
"@dmail/spy": "1.0.1",
"@dmail/test": "6.0.0",
"codecov": "2.3.0",
"nyc": "11.2.1",
"@dmail/project-eslint-config": "github:dmail/project-eslint-config",
"eslint": "5.1.0",
"eslint-plugin-import": "2.6.0",
"babel-eslint": "9.0.0",
"@dmail/project-prettier-config": "github:dmail/project-prettier-config",
"@dmail/prettiest": "github:dmail/prettiest",
"prettier": "1.9.1",
"@dmail/project-structure": "github:dmail/project-structure",
"@dmail/project-structure-compile-babel": "github:dmail/project-structure-compile-babel",
"rimraf": "2.6.2"
},
"scripts": {
"code-compile": "node ./script/compile.js",
"code-clean": "rimraf dist",
"code-build": "npm run code-clean && npm run code-compile",
"code-lint": "eslint .",
"code-list": "prettiest-list",
"code-format": "prettiest",
"test-list": "test-list",
"test-before": "npm run code-clean && npm run code-lint && npm run code-format && npm run code-compile",
"test-run": "test-run",
"test": "npm run test-before && npm run test-run",
"test-cover": "npm run test-before && nyc npm run test-run",
"test-cover-clean": "rimraf .nyc_output && rimraf coverage && rimraf coverage.lcov",
"test-cover-html": "nyc report --reporter=lcov",
"test-cover-text": "nyc report --reporter=text-summary",
"test-cover-table": "nyc report --reporter=text",
"test-cover-lcov": "nyc report --reporter=text-lcov > coverage.lcov",
"test-cover-upload": "codecov --token=9f735b95-4762-4239-956a-35d53af3e6bf",
"repo-reset": "npm run code-clean && npm run test-cover-clean && rimraf node_modules",
"repo-reinstall": "npm run repo-reset && npm install",
"build": "npm run code-build",
"compile": "npm run code-compile",
"prepublishOnly": "npm run code-build",
"reinstall": "npm run repo-reinstall"
}
}