-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
50
51
52
{
"name": "mona",
"version": "0.9.1",
"description": "Composable parsers",
"main": "lib/index.js",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/zkat/mona"
},
"keywords": [
"parser",
"parsing",
"monads",
"parser-combinators",
"functional",
"fp"
],
"author": "Kat Marchán <kzm@sykosomatic.org>",
"bugs": {
"url": "https://github.com/zkat/mona/issues"
},
"files": [
"README.md",
"lib/*",
"browser/*"
],
"devDependencies": {
"babel-cli": "^6.1.1",
"babel-preset-es2015": "^6.0.15",
"mocha": "^2.3.3",
"standard": "^5.3.1",
"webpack": "^1.12.3"
},
"readmeFilename": "README.md",
"scripts": {
"minbundle": "webpack --progress --colors -d -p --output-library mona --output-library-target umd lib/index.js browser/mona.js",
"bundle": "webpack --progress --colors -d --output-library mona --output-library-target umd lib/index.js browser/mona.js",
"babel": "babel --presets es2015 src --out-dir lib",
"build": "npm run babel && npm run bundle && npm run minbundle",
"prepublish": "npm run build",
"test": "standard src/* test/* && npm run build && mocha --reporter spec"
},
"dependencies": {
"@mona/combinators": "^1.0.5",
"@mona/core": "^1.0.4",
"@mona/numbers": "^1.0.3",
"@mona/parse": "^1.0.5",
"@mona/parse-async": "^1.0.0",
"@mona/strings": "^1.1.1"
}
}