-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.13 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
66
{
"name": "@dmail/mixin",
"version": "6.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dmail/mixin"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "index.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=8.6.0"
},
"dependencies": {},
"devDependencies": {
"@dmail/expect": "2.9.0",
"@dmail/prettiest": "1.0.0",
"@dmail/shared-config": "3.1.0",
"@dmail/spy": "1.0.1",
"@dmail/test": "6.0.0",
"babel-cli": "7.0.0-beta.0",
"babel-core": "7.0.0-beta.0",
"babel-eslint": "8.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "2.0.0-beta.0",
"codecov": "2.3.0",
"eslint": "3.19.0",
"eslint-plugin-import": "2.6.0",
"nyc": "11.2.1",
"prettier": "^1.9.1",
"rimraf": "2.6.2"
},
"scripts": {
"code-compile": "babel . --out-dir dist --ignore=node_modules,dist --source-maps",
"code-clean": "rimraf dist",
"code-build": "npm run code-clean && npm run code-compile",
"code-watch": "babel . --watch --out-dir dist --ignore=node_modules,dist --source-maps",
"code-lint": "eslint .",
"code-format": "prettiest",
"code-list": "prettiest-list",
"test-before": "npm run code-clean && npm run code-lint && npm run code-format && npm run code-compile",
"test-list": "test-list",
"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=30d76e30-c2e3-4d8e-9c63-0610b8ccae5c",
"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"
}
}