-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "flamingo-learners",
"version": "0.0.3",
"description": "A collection of lodash functions developed by Learners Guild learners",
"main": "dist/flamingo.js",
"files": [
"dist"
],
"scripts": {
"build": "./node_modules/.bin/babel src -d dist --copy-files",
"buildwatch": "babel src -w --out-dir dist --copy-files",
"prepublish": "npm run build",
"test": "jasmine JASMINE_CONFIG_PATH=src/spec/support/jasmine.json",
"start": "nodemon dist/flamingo.js"
},
"keywords": [],
"contributors": [
{
"name": "Devon Wesley",
"email": "dwesley89@gmail.com"
},
{
"name": "Najee Williams",
"email": "thamaranth@gmail.com"
},
{
"name": "Bre McEwen",
"email": "debrenamcewen@gmail.com"
},
{
"name": "Maurice Caviness",
"email": "Compsight@aol.com"
},
{
"name": "Sal Soloman",
"email": "solomanasoloman@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"jasmine": "^2.4.1",
"lodash": "^4.14.0",
"nodemon": "^1.9.2"
},
"dependencies": {}
}