-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.91 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "oaty",
"version": "1.0.1",
"description": "Object Array Transposer(y) - JS objects with multiple key/value structures",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"clean": "rimraf dist",
"coverage": "nyc npm run test",
"benchmark": "ts-node benchmark/index.spec.ts --outDir ./benchmark",
"build": "npm run clean && tsc",
"test": "mocha --require ts-node/register test/**/*.spec.ts --reporter list",
"test-d": "npm run build && tsd",
"format": "prettier --write \"**/*.{ts,md,yml,json}\"",
"ci": "npm run coverage && npm run test-d",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run ci",
"preversion": "npm run ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmsv/oaty.git"
},
"keywords": [
"array",
"keys",
"oaty",
"object",
"objects",
"transpose",
"transposer"
],
"author": "James Vickery <dev@jmsv.me>",
"contributors": [
{
"name": "Jonathan Marsh",
"email": "hello@jonmarsh.dev",
"url": "https://www.jonmarsh.dev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jmsv/oaty/issues"
},
"homepage": "https://github.com/jmsv/oaty#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.2",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^3.1.1",
"rimraf": "^2.6.3",
"ts-node": "^8.1.0",
"tsd": "^0.11.0",
"typescript": "3.8.3"
},
"tsd": {
"directory": "test"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"index.ts"
],
"reporter": [
"text",
"lcov"
],
"all": true,
"check-coverage": true,
"statements": 100,
"functions": 100,
"branches": 100,
"lines": 100
}
}