-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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
{
"name": "mr-parser",
"version": "0.2.2",
"description": "parses mathematical expressions and outputs an AST that represents the expression",
"bugs": "https://github.com/mauriciopoppe/mr-parser/issues",
"license": "MIT",
"main": "index.js",
"author": "Mauricio Poppe (https://mauriciopoppe.com)",
"files": [
"index.js",
"lib",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/mauriciopoppe/mr-parser"
},
"keywords": [
"mr-parser",
"parser",
"math",
"expression"
],
"dependencies": {},
"devDependencies": {
"coveralls": "^2.11.2",
"doctoc": "^0.14.2",
"gaze-cli": "^0.2.0",
"istanbul": "^0.3.8",
"standard": "^4.5.0",
"tap-dot": "^1.0.0",
"tap-spec": "^4.0.2",
"tape": "^4.0.1"
},
"scripts": {
"istanbul": "istanbul cover test/index.js",
"lint": "standard",
"doctoc": "doctoc .",
"test": "node test/index.js | tap-spec",
"test:watch": "gaze 'npm test' 'test/**/*.js' 'lib/**/*.js' 'index.js'",
"start": "npm run test:watch"
}
}