-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "@emmetio/math-expression",
"version": "1.0.5",
"description": "Parse and evaluate simple math expressions",
"main": "./dist/math.cjs.js",
"module": "./dist/math.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha",
"build": "rollup -c",
"watch": "rollup -wc",
"lint": "tslint ./src/*.ts",
"clean": "rm -rf ./dist",
"prepare": "npm test && npm run lint && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmetio/math-expression.git"
},
"keywords": [
"math",
"expression",
"evaluate",
"emmet"
],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emmetio/math-expression/issues"
},
"homepage": "https://github.com/emmetio/math-expression#readme",
"dependencies": {
"@emmetio/scanner": "^1.0.4"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^12.7.12",
"mocha": "^7.1.1",
"rollup": "^2.6.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"mocha": {
"require": "ts-node/register",
"spec": "./test/*.ts"
}
}