forked from caiogondim/parse-price.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 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
{
"name": "parse-price",
"version": "1.1.3",
"description": "returns a Number from a localized price string",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/index.js --cov",
"test:types": "tsc --allowJs --checkJs --noEmit src/*.js",
"test:lint": "standard 'src/**/*.js' 'test/**/*.js'",
"test:lint:fix": "standard --fix 'src/**/*.js' 'test/**/*.js'",
"test:all": "npm run test:lint && npm run test && npm run test:types",
"posttest": "tap --coverage-report=lcov | codecov",
"build": "webpack && ./tasks/write-banner",
"build:min": "webpack && uglifyjs dist/parse-price.js -c -m -o dist/parse-price.min.js && ./tasks/write-banner",
"build:all": "npm run build && npm run build:min",
"preversion": "npm run test:all",
"version": "npm run build:all && git add dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caiogondim/parse-price.js.git"
},
"keywords": [
"parse",
"number",
"localization",
"price",
"i10n",
"i18n",
"internationalization"
],
"author": "Caio Gondim",
"license": "MIT",
"bugs": {
"url": "https://github.com/caiogondim/parse-price.js/issues"
},
"homepage": "https://github.com/caiogondim/parse-price.js#readme",
"devDependencies": {
"@types/node": "8.0.34",
"codecov": "^1.0.1",
"covert": "^1.1.0",
"standard": "^7.1.2",
"tap": "^6.3.0",
"typescript": "2.5.3",
"uglify-js": "^2.7.0",
"webpack": "^1.13.1"
}
}