-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 KB
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
{
"name": "fun-util",
"version": "1.2.0",
"description": "A collection of reusable helper methods for a variety of occasions.",
"main": "index.js",
"directories": {
"test": "./node_modules/jasmine/bin/jasmine.js"
},
"dependencies": {},
"devDependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.18.0",
"colors": "^1.1.2",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-jasmine": "^2.4.2",
"jasmine": "^2.5.2",
"jasmine-spec-reporter": "^2.7.0"
},
"scripts": {
"prepublish": "npm test && ./node_modules/gulp/bin/gulp.js transpile:all",
"test": "./node_modules/gulp/bin/gulp.js test",
"test:watch": "./node_modules/gulp/bin/gulp.js test:watch"
},
"author": "skuttleman@gmail.com",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/skuttleman/fun-util.git"
},
"bugs": {
"url": "https://github.com/skuttleman/fun-util/issues"
},
"homepage": "https://github.com/skuttleman/fun-util#readme"
}