forked from andrewplummer/Sugar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "@romancow/sugar",
"version": "2.0.7",
"description": "A Javascript utility library for working with native objects.",
"main": "dist/sugar.js",
"homepage": "https://sugarjs.com/",
"icon": "https://sugarjs.com/icon.svg",
"repository": "git://github.com/romancow/Sugar.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"license": "MIT",
"author": "Andrew Plummer <[email protected]>",
"keywords": [
"sugar",
"sugarjs",
"functional",
"browser",
"utility",
"util"
],
"bugs": {
"url": "https://github.com/andrewplummer/Sugar/issues"
},
"engines": {
"node": ">= 0.8.23"
},
"browser": {
"buffer": false
},
"scripts": {
"test": "istanbul cover test/node --report=lcovonly",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"typings": "sugar.d.ts",
"devDependencies": {
"acorn": "^2.7.0",
"closure-compiler-stream": "^0.1.15",
"coveralls": "^2.11.15",
"glob": "^5.0.14",
"google-closure-compiler": "^20180716.0.1",
"gulp": "^3.9.0",
"gulp-file": "^0.3.0",
"gulp-util": "^3.0.6",
"istanbul": "^0.4.5",
"merge-stream": "^0.1.8",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.4",
"sinon": "^1.15.4",
"through2": "^2.0.0",
"yargs": "^3.15.0"
}
}