-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "lmount",
"version": "0.0.3",
"description": "A simple functional reactive lens library built around flyd and ramda.",
"repository": {
"type": "git",
"url": "https://github.com/exound/lmount.git"
},
"keywords": [
"flyd",
"ramda",
"functional",
"reactive"
],
"license": "MIT",
"files": [
"dist/lmount.js"
],
"main": "dist/lmount.js",
"scripts": {
"prepublish": "rm -rf **/*~ && mkdir -p ./dist && node_modules/.bin/babel src/lmount.js -o dist/lmount.js",
"test": "node_modules/.bin/mocha --require babel-core/register --reporter dot ./test/*.test.js",
"test:watch": "node_modules/.bin/mocha --compilers js:babel-core/register --reporter dot --watch ./test/*.test.js"
},
"dependencies": {
"flyd": "~0.1.16",
"ramda": "~0.18.0"
},
"devDependencies": {
"babel-cli": "~6.0.15",
"babel-core": "~6.0.20",
"babel-preset-es2015": "~6.0.0",
"babel-plugin-transform-class-properties": "~6.0.14",
"mocha": "~2.3.4",
"chai": "~3.4.1"
}
}