-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.46 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
{
"name": "scriptutils",
"version": "2.0.0",
"description": "Utilities to make Javascript Easy",
"main": "dist/node/index.js",
"scripts": {
"test": "./test.sh",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "gulp",
"version": "git checkout master; npm install; npm run build && git add -A dist",
"postversion": "git push -u && git push --tags && npm publish"
},
"keywords": [
"javascript",
"node",
"nodejs",
"utility",
"library",
"package",
"js",
"browser",
"utilities",
"array",
"insert",
"remove",
"element",
"hash",
"promise",
"string",
"timeout",
"number",
"random",
"swap",
"pad",
"timer"
],
"author": "rrainn, Inc.",
"license": "MIT",
"repository": "https://github.com/rrainn/scriptutils",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.0",
"browserstack-runner": "^0.7.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.7.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"browser": "dist/browser/index.js",
"nyc": {
"sourceMap": false,
"instrument": false
},
"engines": {
"node": ">=4.0"
}
}