-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "price-extractor",
"version": "2.1.1",
"description": "Given a price string, extract the price and currency code",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^6 || ^8 || ^10 || ^12 || ^14 || ^16 || ^18"
},
"scripts": {
"test": "npm run lint && npm run test:cover",
"test:unit": "mocha --opts src/test/mocha.opts",
"build": "npm run lint && npm run compile",
"compile": "./node_modules/.bin/tsc",
"test:cover": "nyc --reporter=lcov --reporter=text-summary mocha --opts src/test/mocha.opts",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PruvoNet/price-extractor.git"
},
"keywords": [
"node",
"javascript",
"price",
"currency",
"curr",
"parser",
"extract",
"extractor"
],
"author": "Regev Brody <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/PruvoNet/price-extractor/issues"
},
"homepage": "https://github.com/PruvoNet/price-extractor#readme",
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.34",
"@types/underscore": "^1.11.0",
"chai": "^4.3.4",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"source-map-support": "^0.5.21",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^4.8.4",
"underscore": "^1.13.6"
}
}