forked from ocaml-community/sedlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "bs-sedlex",
"version": "20.0.0",
"description": "An OCaml lexer generator for Unicode",
"main": "index.js",
"directories": {
"example": "examples"
},
"dependencies": {
"bs-gen": "^0.5.2",
"bs-uchar": "^2.0.0"
},
"devDependencies": {
"archiver": "^3.1.1",
"bs-platform": "^5.2.1",
"cpy": "^7.3.0",
"foreach-cli": "^1.8.1",
"make-dir": "^1.3.0",
"node-jq": "^1.10.3",
"ppx-sedlex": "=20.0.0"
},
"peerDependencies": {
"bs-platform": ">=5.0.0"
},
"scripts": {
"clean:examples": "npm run clean:ppx && cd examples && bsb -clean-world",
"build:examples": "npm run build:ppx && cd examples && bsb -make-world",
"clean:runtime": "bsb -clean-world",
"build:runtime": "bsb -make-world",
"clean:ppx": "dune clean",
"build:ppx": "dune build && node scripts/package.js",
"clean": "npm run clean:runtime && npm run clean:ppx",
"build": "npm run build:runtime && npm run build:ppx",
"prepare": "npm run clean && npm run build:runtime",
"preversion": "./scripts/preversion.sh",
"version": "./scripts/version.sh",
"test": "foreach -g 'examples/*.bs.js' -x 'node #{path}'",
"travis": "./scripts/travis.sh"
},
"files": [
"bsconfig.json",
"sedlex.opam",
"examples/**/*.ml",
"examples/**/*.mli",
"examples/**/*.bs.js",
"src/**/*.ml",
"src/**/*.mli",
"src/**/*.bs.js",
"!**/dune",
"!**/.merlin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ELLIOTTCABLE/bs-sedlex.git"
},
"author": "Alain Frisch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ELLIOTTCABLE/bs-sedlex/issues"
},
"homepage": "https://github.com/ELLIOTTCABLE/bs-sedlex#readme"
}