-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "caesar-caser",
"version": "1.0.0-rc.2",
"description": "Simple but powerful utility for case style detection and converting",
"main": "lib/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test:watch": "jest --watchAll",
"test": "jest",
"dev": "rollup --config --watch",
"build:clear": "rimraf lib",
"build:lib": "rollup --config --compact",
"build": "npm run build:clear && npm run build:lib",
"ci": "npm run build && npm run test",
"prepublishOnly": "npm run ci",
"postversion": "git add -A && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adlite/caesar-caser.git"
},
"keywords": [
"code-conventions",
"case-system",
"case-detection",
"case-converting",
"camelcase",
"camel-case",
"camel",
"case",
"dash",
"string",
"pascalcase",
"kebabcase",
"traincase",
"snakecase",
"capitalization",
"text-processing"
],
"author": "Adlite <adlite@yandex.ru> (https://github.com/adlite/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adlite/caesar-caser/issues"
},
"homepage": "https://github.com/adlite/caesar-caser#readme",
"files": [
"lib"
],
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"rollup": "^1.16.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0"
}
}