-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
84 lines (84 loc) · 2.66 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "tinymath",
"version": "1.2.1",
"description": "A tiny math expression library with only the stuff I personally care about. Deal with it.",
"main": "lib/tinymath.js",
"module": "lib/tinymath.mjs",
"jsnext:main": "lib/tinymath.mjs",
"browser": "lib/tinymath.min.js",
"scripts": {
"build": "yarn run build:grammar && yarn run clean && rollup -c rollup.build.js",
"build:grammar": "pegjs -o src/grammar.js src/grammar.pegjs",
"clean": "rimraf lib",
"dev": "yarn run clean && rollup --watch -c rollup.dev.js",
"docs": "jsdoc2md --template docs/template/functions.hbs src/functions/*.js > docs/functions.md",
"lint": "eslint src/*.js src/**/*.js test/*.js test/**/*.js",
"lint:fix": "eslint --fix src/*.js src/**/*.js test/*.js test/**/*.js",
"test": "mocha --require esm --colors ./test/*.spec.js ./test/**/*.spec.js",
"test:watch": "mocha --require esm --colors -w ./test/*.spec.js ./test/**/*.spec.js",
"version": "yarn run docs",
"pretest": "yarn run build"
},
"repository": {
"type": "git",
"url": "https://github.com/elastic/tinymath.git"
},
"author": "Rashid Khan <rashid.khan@elastic.co>",
"contributors": [
"Catherine Liu <catherine.liu@elastic.co>"
],
"license": "Apache-2.0",
"engines": {
"node": "^14.0.0"
},
"bugs": {
"url": "https://github.com/elastic/tinymath"
},
"files": [
"lib"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"esm": {
"cjs": true
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@elastic/eslint-config-kibana": "^0.15.0",
"@elastic/eslint-import-resolver-kibana": "^2.0.0",
"@rollup/plugin-commonjs": "^17.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"core-js": "2",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.1.0",
"esm": "^3.0.84",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^8.2.1",
"object-get": "^2.1.0",
"pegjs": "^0.10.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.36.1",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.0.0",
"rollup-plugin-terser": "^7.0.2"
}
}