-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "object-casing",
"version": "0.0.3",
"description": "Walks throught an object using a callback function to convert the object key, returning a new object with new keys.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jasmine-ts --config=jasmine.json",
"lint": "tslint --project .",
"build": "tsc -p .",
"coverage": "nyc npm test",
"coveralls": "coveralls < ./coverage/lcov.info",
"prepare": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunolm/object-casing.git"
},
"keywords": [
"casing",
"object-keys",
"camelcase",
"snakecase"
],
"author": {
"email": "brunolm7@gmail.com",
"name": "Bruno Leonardo Michels",
"url": "http://codingwise.com/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/brunolm/object-casing/issues"
},
"homepage": "https://github.com/brunolm/object-casing#readme",
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec.ts"
],
"reporter": [
"lcov"
]
},
"runkitExampleFilename": "runkit.js",
"devDependencies": {
"@types/jasmine": "^3.3.5",
"coveralls": "^3.0.2",
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.3.0",
"nyc": "^13.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-consistent-codestyle": "^1.15.0",
"typescript": "^3.2.2"
}
}