forked from abrobston/jscc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.48 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
105
106
{
"name": "jscc-parser",
"version": "0.40.2",
"main": "main.js",
"description": "A LALR(1) Parser Generator for JavaScript written in JavaScript.",
"license": "BSD-3-Clause",
"keywords": [
"jscc",
"JS/CC",
"lexer",
"parser",
"lexical analysis",
"yacc",
"lex"
],
"repository": {
"type": "git",
"url": "https://github.com/abrobston/jscc.git"
},
"bugs": "https://github.com/abrobston/jscc/issues",
"contributors": [
{
"name": "Jan Max Meyer",
"email": "[email protected]",
"web": "http://jscc.phorward-software.com/"
},
{
"name": "Sergiy Shatunov"
},
{
"name": "Louis P. Santillan"
},
{
"name": "Andrew Brobston",
"email": "[email protected]"
}
],
"devDependencies": {
"almond": "~0.3.2",
"amdclean": "~2.7.0",
"amdefine": "~1.0.0",
"async": "~2.0.1",
"chai": "~3.5.0",
"codecov": "~1.0.1",
"extract-zip": "~1.5.0",
"google-closure-compiler": "=20160517.0.0",
"gulp": "~3.9.1",
"jformatter": "~1.0.13",
"jsdoc": "~3.4.0",
"mocha": "~2.4.5",
"nyc": "~6.6.1",
"phantomjs-prebuilt": "~2.1.9",
"requirejs": "~2.2.0",
"requirejs-text": "~2.0.12",
"rest": "^2.0.0",
"sinon": "~1.17.5",
"source-map": "~0.5.6",
"squirejs": "~0.2.1",
"temp": "~0.8.3"
},
"homepage": "http://jscc.brobston.com/",
"engine": [
"node",
"rhino",
"nashorn"
],
"bin": {
"jscc-browser": "./bin/npm-browser.js",
"jscc-nashorn": "./bin/npm-nashorn.js",
"jscc-node": "./bin/npm-node.js",
"jscc-rhino": "./bin/npm-rhino.js"
},
"directories": {
"lib": "lib"
},
"nyc": {
"cache": true,
"require": [
"./main"
],
"exclude": [
"test/**/*.js",
"asyncSupport.js",
"gulpfile.js",
"resolvePackageDirectories.js",
"volo/**/*.js",
"lib/jscc/bitset/bitset.js",
"lib/jscc/bitset/BitSetBool.js",
"lib/jscc/bitset/BitSetJava.js",
"lib/jscc/io/io.js",
"lib/jscc/io/ioBrowser.js",
"lib/jscc/io/ioNashorn.js",
"lib/jscc/io/ioRhino.js",
"lib/jscc/io/ioSpiderMonkey.js",
"lib/jscc/io/ioV8.js",
"lib/jscc/log/log.js",
"lib/jscc/log/logBrowser.js",
"lib/jscc/log/logJava.js"
]
},
"scripts": {
"test": "nyc gulp test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -f coverage.lcov",
"prepublish": "npm update --dev && gulp clean && gulp build"
}
}