This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.63 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ohm-js",
"version": "0.15.0",
"description": "An object-oriented language for parsing and pattern matching",
"repository": "https://github.com/harc/ohm",
"keywords": [
"parser",
"compiler",
"pattern matching",
"pattern-matching",
"ometa",
"ometa/js",
"ometa-js",
"ometajs",
"rapid",
"prototyping"
],
"homepage": "https://ohmlang.github.io/",
"bugs": "https://github.com/harc/ohm/issues",
"main": "src/main.js",
"bin": "src/ohm-cmd.js",
"types": "index.d.ts",
"scripts": {
"prebootstrap": "bash bin/prebootstrap",
"bootstrap": "bash bin/bootstrap --test || (echo 'Bootstrap failed.' && mv -v dist/ohm-grammar.js.old dist/ohm-grammar.js && mv -v dist/built-in-rules.js.old dist/built-in-rules.js && mv -v dist/operations-and-attributes.js.old dist/operations-and-attributes.js)",
"build": "node bin/build-debug.js && uglifyjs dist/ohm.js > dist/ohm.min.js",
"prebuild-debug": "bash bin/update-env.sh",
"build-debug": "bash bin/build-debug.sh",
"ci-test": "npm run lint && npm test && ts-node test/test-typings.ts",
"clean": "rm -f dist/ohm.js dist/ohm.min.js",
"deploy-gh-pages": "bin/deploy-gh-pages.sh",
"lint": "eslint .",
"pretest": "bash bin/update-env.sh",
"test": "tape 'test/**/*.js' | tap-spec",
"test-watch": "bash bin/test-watch",
"postinstall": "node bin/dev-setup.js",
"precommit": "npm run prepublishOnly",
"prepublishOnly": "npm run lint && npm run build && npm run bootstrap",
"unsafe-bootstrap": "bash bin/bootstrap",
"visualizer": "bash bin/ohm-visualizer",
"watch": "bash bin/watch.sh"
},
"license": "MIT",
"author": "Alex Warth <[email protected]> (http://tinlizzie.org/~awarth)",
"contributors": [
"Patrick Dubroy <[email protected]>",
"Meixian Li <[email protected]>",
"Marko Röder <[email protected]>",
"Tony Garnock-Jones <[email protected]>",
"Saketh Kasibatla <[email protected]>",
"Lionel Landwerlin <[email protected]>",
"Jason Merrill <[email protected]>",
"Yoshiki Ohshima <[email protected]>",
"Neil Jewers <[email protected]>",
"Jonathan Edwards <[email protected]>",
"Ray Toal <[email protected]>",
"codeZeilen <[email protected]>",
"owch <[email protected]>",
"sfinnie <[email protected]>",
"AngryPowman <[email protected]>",
"Arthur Carabott <[email protected]>",
"Daniel Tomlinson <[email protected]>",
"Justin Chase <[email protected]>",
"Leslie Ying <[email protected]>",
"Luca Guzzon <[email protected]>",
"Mike Niebling <(none)>",
"Milan Lajtoš <[email protected]>",
"Stan Rozenraukh <[email protected]>",
"Stephan Seidt <[email protected]>",
"acslk <[email protected]>"
],
"dependencies": {
"es6-symbol": "^3.1.0",
"inherits": "^2.0.3",
"is-buffer": "^1.1.4",
"util-extend": "^1.0.3"
},
"devDependencies": {
"@types/tape": "^4.2.29",
"browserify": "^13.1.1",
"eslint": "~3.13.1",
"eslint-config-google": "~0.7.1",
"eslint-plugin-camelcase-ohm": "~0.2.1",
"eslint-plugin-no-extension-in-require": "~0.2.0",
"eslint-plugin-tape": "~1.1.0",
"husky": "^0.14.3",
"jsdom": "^9.9.1",
"json": "^9.0.4",
"markscript": "^0.5.0",
"node-static": "^0.7.9",
"nodemon": "^1.11.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-catch": "^1.0.6",
"ts-node": "^2.1.0",
"typescript": "2.2.1",
"uglify-js": "^2.7.5",
"walk-sync": "^0.3.1",
"watchify": "^3.8.0"
},
"engines": {
"node": ">=0.12.1"
}
}