-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.99 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
{
"name": "pico-lambda",
"version": "2.1.0",
"description": "native functional js",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf dist ; mkdir dist ;",
"build": "npm run clean ; browserify -e src/index.js -o dist/index.js -t [ babelify --presets [ es2015 ] ] -s PicoLambda",
"test": "jasmine test/*.test.js",
"test:chrome": "karma start karma.local.conf.js --browsers Chrome",
"test:remote": "npm run build ; npm run lint && BUILD=$(git rev-parse --short HEAD) karma start karma.conf.js",
"lint": "semistandard src/index.js test/test.js --fix | snazzy",
"watch": "nodemon --exec 'jasmine' test/test.js"
},
"keywords": [
"functional",
"fp",
"lambda",
"tiny",
"pico"
],
"contributors": [
{
"email": "[email protected]",
"name": "Ronn Ross",
"url": "https://github.com/ronnross"
},
{
"email": "[email protected]",
"name": "Matt McFarland",
"url": "https://github.com/mattmcfarland"
},
{
"email": "[email protected]",
"name": "Brendan O'Brien",
"url": "https://github.com/ChanEilFhios"
},
{
"email": "[email protected]",
"name": "Sherman Adelson",
"url": "https://github.com/mnebuerquo"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/trainyard/pico-lambda.git"
},
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"install": "^0.10.1",
"jasmine": "2.5.3",
"jasmine-node": "1.14.5",
"jasmine-spec-reporter": "3.2.0",
"karma": "^1.4.1",
"karma-browserstack-launcher": "^1.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"nodemon": "1.11.0",
"npm": "^5.5.1",
"semistandard": "^9.2.1",
"snazzy": "6.0.0",
"strip-comments": "0.4.4"
},
"files": [
"src"
],
"dependencies": {
"browserify": "^14.4.0"
}
}