forked from dleitee/strman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.76 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 2.76 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "strman",
"version": "2.0.0",
"description": "A Javascript string manipulation library without npm dependences.",
"main": "lib/strman.js",
"directories": {
"test": "test"
},
"scripts": {
"build:packages": "babel-node build/build.js",
"build:strman": "babel src --out-dir lib",
"prepublish": "npm run build:strman",
"postpublish": "rm -rf ./lib",
"test": "jest --coverage --expand",
"test-watch": "jest --watch",
"lint": "eslint src tests",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"docs": "jsdoc --configure .jsdocrc --verbose -r"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dleitee/strman.git"
},
"keywords": [
"string",
"manipulate",
"str",
"manipulation",
"strman"
],
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb/base",
"env": {
"browser": true,
"node": true,
"jest": true
},
"rules": {
"semi": [
2,
"never"
],
"no-console": [
2,
{
"allow": [
"warn",
"info",
"error"
]
}
],
"import/named": 2,
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxEOF": 1,
"maxBOF": 0
}
],
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"parent",
"sibling",
"index"
],
"newlines-between": "always"
}
],
"no-lenght/no-lenght": "error"
},
"plugins": [
"no-lenght"
]
},
"author": "Daniel Leite de Oliveira <dleitee@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dleitee/strman/issues"
},
"homepage": "https://github.com/dleitee/strman#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.7.6",
"babel-eslint": "^7.1.1",
"babel-istanbul": "^0.8.0",
"babel-jest": "^19.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-remove-import": "^1.0.0",
"babel-plugin-transform-remove-strict-mode": "^0.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.7.2",
"coveralls": "^2.11.9",
"dox": "^0.9.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-no-lenght": "^1.0.2-0",
"jest": "^19.0.2",
"jsdoc": "^3.4.3",
"jsdoc-babel": "^0.3.0",
"minami": "^1.1.1",
"showdeps": "^1.0.0",
"yarn": "^0.19.1"
}
}