forked from panzerdp/voca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (87 loc) · 2.96 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
{
"name": "voca",
"version": "1.0.0",
"description": "The ultimate JavaScript string library",
"homepage": "https://vocajs.com",
"author": {
"name": "Dmitri Pavlutin",
"email": "[email protected]",
"url": "https://rainsoft.io/about-me/"
},
"license": "MIT",
"keywords": [
"string",
"sprintf",
"trim",
"truncate",
"pad",
"slugify",
"latinise",
"escape",
"word",
"wrap",
"case"
],
"repository": {
"type": "git",
"url": "git+https://github.com/panzerdp/voca.git"
},
"bugs": {
"url": "https://github.com/panzerdp/voca/issues",
"email": "[email protected]"
},
"main": "index.js",
"jsnext:main": "index.es2015.js",
"scripts": {
"eslint": "eslint . --ext .js",
"build": "npm run build-dist && npm run build-npm-package",
"build-dist": "rollup -c config/rollup_dist.js && rollup -c config/rollup_dist_min.js && rollup -c config/rollup_test.js",
"build-npm-package": "npm run prepare-npm-package && rollup -c config/rollup_dist_mod.js && node config/transform.js && rollup -c config/rollup_dist_es.js",
"prepare-npm-package": "rm -rf dist_mod && mkdir dist_mod && cp package.json README.md LICENSE.md ./dist_mod",
"test": "mocha test/index.js --reporter dot",
"test-npm-package": "mocha test/modules_common.js test/modules_es2015.js --reporter dot",
"test-sl": "grunt --gruntfile ./test_runner/gruntfile.js --base .",
"coverage": "istanbul cover _mocha -- test/index.js --reporter spec",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"verify": "npm run eslint && npm run coverage",
"jsdoc": "jsdoc --configure .jsdoc.json",
"deploy": "rollup -c config/rollup_dist.js && cp dist/voca.js docs/scripts && scp -r docs/* rainishere:/home/rainishere/webapps/voca_docs"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.20.0",
"babel-eslint": "7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-module-resolver": "2.4.0",
"babel-plugin-transform-es2015-block-scoping": "6.20.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
"babel-plugin-transform-es2015-parameters": "6.18.0",
"babel-plugin-transform-es2015-shorthand-properties": "6.18.0",
"babel-plugin-transform-es2015-spread": "6.8.0",
"babel-plugin-transform-object-assign": "6.8.0",
"babel-register": "6.18.0",
"babel-root-import": "4.1.5",
"chai": "3.5.0",
"codecov.io": "0.1.6",
"eslint": "3.12.2",
"ghooks": "1.3.2",
"glob": "7.1.1",
"grunt": "1.0.1",
"grunt-contrib-connect": "1.0.2",
"grunt-saucelabs": "9.0.0",
"istanbul": "1.1.0-alpha.1",
"jsdoc": "3.4.3",
"mkdirp": "0.5.1",
"mocha": "3.2.0",
"rollup": "0.37.0",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-uglify": "1.0.1",
"source-map-support": "0.4.6"
},
"dependencies": {},
"config": {
"ghooks": {
"pre-commit": "npm run eslint && npm run test"
}
}
}