-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.81 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
{
"name": "smartstring.js",
"description": "Java script Utils for general purpose",
"version": "1.3.1",
"repository": {
"type": "git",
"url": "https://github.com/rossbu/SmartString.js.git"
},
"keywords": [
"javascript",
"js",
"StringUtils",
"String",
"SS"
],
"files": [
"README.md",
"dist"
],
"author": "rossbu",
"license": "MIT",
"main": "lib/SmartString",
"dependencies": {
"lodash": "4.17.4"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.18.0",
"babel-register": "6.18.0",
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "1.2.0",
"gulp": "3.9.1",
"gulp-browserify": "0.5.1",
"gulp-buffer": "0.0.2",
"gulp-mocha": "2.0.0",
"gulp-rename": "1.2.0",
"gulp-rimraf": "^0.1.1",
"gulp-sourcemaps": "2.3.1",
"gulp-tap": "0.1.3",
"gulp-uglify": "1.1.0",
"husky": "0.12.0",
"i": "0.3.5",
"istanbul": "*",
"json-loader": "0.5.4",
"mocha": "*",
"mochify": "^2.9.0",
"npm-run-all": "4.0.2",
"nyc": "10.0.0",
"reactify": "1.1.1",
"rimraf": "2.6.1",
"semantic-release": "^6.3.2",
"tap": "9.0.3",
"uglify-js": "1.3.x",
"webpack": "1.14.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"watch:test": "npm t -- -w",
"test": "_mocha test/*.test.js --compilers js:babel-register",
"gulptest": "gulp test",
"istanbul": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive -R spec test/*.test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"check-coverage": "istanbul check-coverage --statements 50 --branches 45 --functions 30 --lines 30",
"cover": "nyc npm t",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"precommit": "npm run test && npm run check-coverage",
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist lib --ignore *.test.js",
"build:umd": "webpack --output-filename SmartString.umd.js",
"build:umd:min": "webpack --output-filename SmartString.umd.min.js -p"
},
"bugs": {
"url": "https://github.com/rossbu/SmartString.js/issues"
},
"homepage": "https://github.com/rossbu/SmartString.js#readme"
}