-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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": "eval-num-expr",
"version": "0.2.4",
"description": "Evaluate numerical expressions",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"types": "types/index.d.ts",
"bin": {
"evalNumExpr": "bin/evalNumExpr.js"
},
"scripts": {
"build": "rollup -c",
"prerelease": "npm run build",
"release": "np --no-2fa",
"test": "jest",
"watch": "rollup -c -w",
"docs": "serve .out",
"dev": "npm-run-all -p -l docs watch",
"test:watch": "jest --coverage --watch",
"postrelease": "npm run build && gh-pages -d .out"
},
"keywords": [],
"files": [
"dist",
"types",
"bin"
],
"author": "Sudhir M <https://github.com/sudkumar>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/craftsys/eval-num-expr.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-html": "^0.2.3",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.22",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"np": "^7.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.45.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-fill-html": "^1.1.0",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^11.3.2",
"svelte": "^3.38.2",
"ts-jest": "^26.5.5",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}