-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.65 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
{
"name": "analisadorlexicosintatico",
"version": "2.0.0",
"description": "Implementação de um analisador léxico e sintático para a gramática de expressões aritméticas.\r As regras da gramática devem ser definidas diretamente no código-fonte do programa.\r O programa deve realizar as análises léxica e sintática.\r A saída do programa deve ser uma indicação de que a sentença de entrada está correta ou incorreta (léxica ou sintaticamente).",
"main": "dist/index.js",
"scripts": {
"build": "node_modules/.bin/webpack --output-filename analisador-lex-sin.umd.js",
"build:w": "npm run build -- --watch",
"build:min": "node_modules/.bin/webpack --output-filename analisador-lex-sin.umd.min.js -p",
"build:all": "npm run build && npm run build:min",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js",
"test:tdd": "npm run test -- --watch",
"test:coverage": "nyc npm run test",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"prepush": "npm run test"
},
"files": [
"lib",
"dist"
],
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhemesonmotta/analisadorLexicoSintatico.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jhemesonmotta/analisadorLexicoSintatico/issues"
},
"homepage": "https://github.com/jhemesonmotta/analisadorLexicoSintatico#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13"
}
}