forked from panzerdp/voca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.99 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
{
"name": "voca",
"version": "1.4.0",
"description": "The ultimate JavaScript string library",
"homepage": "https://vocajs.com",
"author": {
"name": "Dmitri Pavlutin",
"email": "[email protected]",
"url": "https://dmitripavlutin.com/about-me/"
},
"license": "MIT",
"keywords": [
"string",
"sprintf",
"trim",
"truncate",
"pad",
"slugify",
"latinise",
"escape",
"word",
"wrap",
"case",
"strip"
],
"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 ./src --ext .js --fix",
"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",
"precommit": "npm run eslint && npm run test"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-transform-es2015-block-scoping": "6.26.0",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-register": "6.26.0",
"babel-root-import": "4.1.8",
"chai": "4.1.2",
"codecov.io": "0.1.6",
"eslint": "4.14.0",
"glob": "7.1.2",
"grunt": "1.0.1",
"grunt-contrib-connect": "1.0.2",
"grunt-saucelabs": "9.0.0",
"husky": "0.14.3",
"istanbul": "1.1.0-alpha.1",
"jsdoc": "3.5.5",
"mkdirp": "0.5.1",
"mocha": "4.0.1",
"rollup": "0.53.0",
"rollup-plugin-babel": "3.0.3",
"rollup-plugin-uglify": "2.0.1",
"source-map-support": "0.5.0"
},
"dependencies": {}
}