forked from silentmatt/expr-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "@datawrapper/expr-eval",
"version": "2.0.7",
"description": "Mathematical expression evaluator",
"main": "dist/bundle.js",
"module": "dist/index.mjs",
"typings": "parser.d.ts",
"type": "module",
"directories": {
"test": "test"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^8.4.0",
"nyc": "^14.1.1",
"rollup": "^1.20.3",
"rollup-plugin-uglify": "^6.0.3"
},
"scripts": {
"test": "npm run build && mocha",
"coverage": "npm run build && nyc --reporter=lcov --reporter=text-summary mocha",
"lint": "eslint index.js src test rollup.config.js rollup-min.config.js",
"watch": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js && rollup -c rollup-cjs.config.js && rollup -c rollup-min.config.js && rollup -c rollup-esm.config.js",
"prepublish": "npm run build"
},
"files": [
"dist/",
"src/",
"package.json",
"parser.d.ts"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"browser": "./dist/bundle.min.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datawrapper/expr-eval.git"
},
"keywords": [
"expression",
"math",
"evaluate",
"eval",
"function",
"parser"
]
}