-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
86 lines (86 loc) · 2.96 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@masala/parser",
"description": "Masala Parser",
"license": "LGPL-2.1",
"version": "0.8.1",
"keywords": [
"parser",
"parsec",
"javascript",
"ll",
"combinator",
"functional",
"composable"
],
"homepage": "https://github.com/d-plaindoux/masala-parser",
"author": {
"name": "Didier Plaindoux",
"email": "[email protected]",
"url": "d.plaindoux.free.fr"
},
"contributors": [
{
"name": "Nicolas Zozol",
"email": "[email protected]",
"url": "http://www.robusta.io"
},
{
"name": "Simon Zozol",
"url": "http://www.robusta.io"
}
],
"repository": {
"type": "git",
"url": "https://github.com/d-plaindoux/masala-parser"
},
"bugs": {
"url": "https://github.com/d-plaindoux/masala-parser/issues"
},
"licenses": [
{
"type": "LGPL2",
"url": "https://github.com/d-plaindoux/masala-parser/blob/master/LICENSE-LGPL2"
}
],
"main": "build/lib/index.js",
"types": "./masala-parser.d.ts",
"engines": {
"node": ">= 6.11.4"
},
"scripts": {
"compile": "rimraf build/ && mkdirp build && babel src --out-dir build --source-maps && node tasks/post-compile.js ",
"dev": "babel --watch src --out-dir dist",
"format": "prettier-eslint --prettier.tab-width 4 --write \"src/**/*.js\"",
"safeformat": "prettier-eslint --prettier.tab-width 4 \"src/**/*.js\"",
"lint": "eslint \"src/**/*.js\"",
"test": "npm run compile && nodeunit build/test/index.js",
"cover": "rimraf ./coverage && mkdirp coverage && babel-node ./node_modules/.bin/babel-istanbul cover --dir coverage/istanbul node_modules/.bin/nodeunit src/test/index.js",
"coveralls": "cat ./coverage/istanbul/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"check": "npm run lint && npm run test && npm run cover",
"concat": "rimraf dist/ && mkdirp dist && npm run compile && browserify build/lib/index.js --standalone masala -o dist/masala-parser.js",
"dist": "rimraf dist/ && mkdirp dist && npm run test && browserify -t uglifyify build/lib/index.js --standalone masalaParser -o dist/masala-parser.min.js",
"integrate": "npm run check && npm run dist && node tasks/integrate.js && echo 'prepuplished OK'",
"copy-ts": "npm run compile && node tasks/copy-to-ts",
"integration": "npm run copy-ts && cd integration-ts && npm run test",
"doc": "typedoc --includeDeclarations --excludeExternals --out documentation/typedoc masala-parser.d.ts"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.9.0",
"browserify": "^17.0.0",
"coveralls": "^3.0.6",
"eslint": "^4.18.2",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"nodeunit": "^0.11.3",
"prettier": "^1.3.1",
"prettier-eslint-cli": "^3.4.3",
"rimraf": "^2.6.1",
"rmfr": "^2.0.0",
"typedoc": "^0.15.0",
"uglifyify": "^5.0.2"
}
}