-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.55 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": "func-formula-parser",
"version": "1.1.0",
"description": "a AST parser for formula & formula function",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"build": "npm run clean && npm run lint && tsc",
"commit": "npm run test",
"test": "npm run lint && npm run test:cover",
"test:unit": "npm run build && mocha ./test/*.test.js --require intelli-espower-loader",
"test:cover": "nyc npm run test:unit --include-pid",
"test:benchmark": "npm run build && node test/benchmark/",
"lint": "tslint -c tslint.json -p tsconfig.json",
"clean": "git clean -Xfq"
},
"nyc": {
"include": [
"**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"text-summary",
"lcov"
]
},
"pre-commit": [
"commit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/baka397/func-formula-parser.git"
},
"keywords": [
"formula",
"parser"
],
"author": "bakajinsei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/baka397/func-formula-parser/issues"
},
"homepage": "https://github.com/baka397/func-formula-parser#readme",
"engines": {
"node": ">=8"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chalk": "^2.4.1",
"eslint": "^5.2.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"power-assert": "^1.6.0",
"pre-commit": "^1.2.2",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
}
}