-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 KB
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": "@prepair/parse-price",
"version": "1.1.6",
"description": "Parse price text into currency and value.",
"main": "lib/",
"scripts": {
"lint": "eslint src",
"build": "shx rm -rf lib && babel src --ignore spec.js -d lib",
"test": "cross-env NODE_ENV=test mocha --opts ./mocha.opts",
"test:watch": "npm t -- --watch --reporter min",
"precommit": "npm run lint && npm test",
"release": "npm run build && git status --porcelain && git checkout master && git pull origin master && standard-version && git push --follow-tags origin master && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prepair/parse-price.git"
},
"keywords": [
"price",
"currency"
],
"author": "Szabolcs Kurdi <szabolcs.kurdi@gmail.com> (https://github.com/szkrd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prepair/parse-price/issues"
},
"homepage": "https://github.com/prepair/parse-price#readme",
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-preset-es2015-ie": "6.6.2",
"chai": "3.5.0",
"cross-env": "3.1.4",
"eslint": "3.14.1",
"eslint-config-semistandard": "7.0.0",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-react": "6.9.0",
"eslint-plugin-standard": "2.0.1",
"husky": "0.13.1",
"mocha": "3.2.0",
"shx": "0.2.2",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"standard-version": "4.0.0"
},
"dependencies": {
"@prepair/locale-support": "2.0.0"
}
}