-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.06 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.06 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
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
{
"name": "metric-parser",
"version": "0.0.12",
"description": "AST-based advanced mathematical parser written by Typescript.",
"main": "dist/metric.parser.umd.js",
"module": "dist/metric.parser.es5.js",
"typings": "dist/types/metric.parser.d.ts",
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts'",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"typedoc": "typedoc --out docs --target es6 --theme minimal --mode file src --exclude **/*.spec.ts",
"test": "nyc mocha"
},
"files": [
"dist"
],
"nyc": {
"all": true,
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"includes": [
"src/**/!(*.spec).ts"
],
"exclude": [
"**/*.spec.ts",
"**/*.interface.ts",
"**/*.d.ts",
"rollup.config.ts",
"coverage",
"docs/",
"dist/",
"demo/"
],
"reporter": [
"lcov",
"json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/KennethanCeyer/metric-parser.git"
},
"keywords": [
"formula",
"metric",
"parser",
"ast",
"typescript",
"validator"
],
"author": "PIGNOSE",
"license": "MIT",
"bugs": {
"url": "https://github.com/KennethanCeyer/metric-parser/issues"
},
"homepage": "https://github.com/KennethanCeyer/metric-parser#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.2",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"lodash.camelcase": "^4.3.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"rollup": "^0.60.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.15.0",
"source-map-support": "^0.5.6",
"ts-lint": "^4.5.1",
"ts-loader": "^4.4.1",
"ts-node": "^6.1.1",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typedoc": "^0.11.1",
"typescript": "^2.9.2",
"webpack": "^4.12.0"
}
}