-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 2.04 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 2.04 KB
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
67
68
69
{
"name": "mage-module-admin",
"version": "0.0.1",
"description": "Static data module, including a Google Spreadsheet add-on to manage exports and imports",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"postinstall": "node -e \"process.exit(require('is-there')('./lib') ? 0 : 1)\" || npm run build",
"build": "tsc --project ./src",
"prepublish": "run-s test build",
"test:lint": " echo 'Check TypeScript code for style issues' && tslint --type-check --format codeFrame --project .",
"test:cpd": " echo 'Check the codebase for copy-pasted code' && jscpd --config .cpd.yaml",
"test:unit": " echo 'Run unit tests' && mocha --compilers ts:ts-node/register -R mocha-reporter ./test/index.ts",
"test:coverage": " echo 'Run unit tests and check coverage level' && nyc --check-coverage --reporter=text --reporter=html npm run test:unit",
"test": "run-s test:*"
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"typings"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"cache": "true",
"instrument": "true",
"report-dir": "./coverage-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mage/mage-module-admin.git"
},
"keywords": [
"mage",
"validator",
"typescript"
],
"author": "Marc Trudel <mtrudel@wizcorp.jp>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mage/mage-module-admin/issues"
},
"homepage": "https://github.com/mage/mage-module-admin#readme",
"devDependencies": {
"@types/mocha": "5.2.5",
"@types/node": "10.12.10",
"git-message": "2.0.2",
"jscpd": "1.0.3",
"mage": "github:mage/mage#master",
"mocha": "5.2.0",
"mocha-reporter": "0.1.1",
"npm-run-all": "4.1.5",
"nyc": "13.1.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.1.6"
},
"dependencies": {}
}