-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.71 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
51
52
53
54
55
56
57
58
{
"name": "stutzjs",
"version": "0.0.11",
"description": "Formats currency values",
"main": "dist/stutz.standalone.js",
"typings": "dist/stutz.d.ts",
"scripts": {
"prestart": "npm install",
"install-dts": "node node_modules/typings/dist/bin/typings.js install",
"start": "webpack-dev-server --TARGET=DEV",
"bundle": "webpack src/stutz.global.ts dist/stutz.global.js",
"browserify": "node node_modules/browserify/bin/cmd.js dist/stutz.global.js --outfile dist/stutz.standalone.js",
"test": "node node_modules/karma/bin/karma start --single-run",
"test-dev": "node node_modules/karma/bin/karma start --TARGET=DEV"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elekktrisch/stutzjs.git"
},
"keywords": [
"currency",
"formatting",
"bigdecimal"
],
"author": "Roman Schlegel",
"license": "MIT",
"bugs": {
"url": "https://github.com/elekktrisch/stutzjs/issues"
},
"homepage": "https://github.com/elekktrisch/stutzjs#readme",
"dependencies": {
"big.js": "3.1.3",
"core-js": "^2.0.3",
"numeral": "^1.5.3"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.2",
"browserify": "^13.0.0",
"imports-loader": "^0.6.5",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"minimist": "^1.2.0",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.3",
"ts-loader": "^0.8.0",
"typescript": "^1.7.5",
"typings": "^0.6.6",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}