forked from dleitee/strman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.65 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"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 -i",
"test-watch": "jest --watch",
"lint": "eslint src test",
"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", "flow"]
},
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dleitee/strman/issues"
},
"homepage": "https://github.com/dleitee/strman#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.7.6",
"babel-eslint": "^9.0.0",
"babel-istanbul": "^0.12.2",
"babel-jest": "^23.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"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-flow": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.7.2",
"coveralls": "^3.0.1",
"dox": "^0.9.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-no-lenght": "^1.0.2-0",
"flow-bin": "^0.78.0",
"jest": "^23.1.0",
"jsdoc": "^3.4.3",
"jsdoc-babel": "^0.5.0",
"minami": "^1.1.1",
"showdeps": "^1.0.0",
"yarn": "^1.7.0"
}
}