-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "tiny-formula",
"version": "0.3.1",
"description": "A toolset for parsing excel-like formulas and calculating with custom functions.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "jasmine-ts \"spec/**/*.spec.ts\"",
"watch": "nodemon --ext ts --exec 'jasmine-ts \"spec/**/*.spec.ts\"'",
"clean": "rm -rf dist && rm -rf types",
"build": "tsc",
"coverage": "nyc -r lcov -e .ts -x \"*.spec.ts\" jasmine-ts \"spec/**/*.spec.ts\"",
"prepare": "husky install",
"prepack": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taggon/tiny-formula.git"
},
"keywords": [
"excel",
"formula",
"parser",
"spreadsheet"
],
"author": "Taegon Kim <gonom9@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/taggon/tiny-formula/issues"
},
"homepage": "https://github.com/taggon/tiny-formula#readme",
"devDependencies": {
"@types/jasmine": "^3.9.1",
"husky": "^7.0.2",
"jasmine": "^3.9.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.13",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{ts,md,json}": [
"prettier --write"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"overrides": [
{
"files": [
"*.yml",
"*.md"
],
"options": {
"tabWidth": 2
}
}
]
}
}