forked from ianmcnally/react-currency-masked-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "react-currency-masked-input",
"version": "1.0.2",
"description": "A react component that masks an input for currency.",
"repository": {
"type": "git",
"url": "https://github.com/imcnally/react-currency-masked-input.git"
},
"author": "Ian McNally <[email protected]>",
"keywords": [
"react",
"mask",
"input",
"currency",
"money"
],
"license": "MIT",
"main": "react-currency-masked-input.js",
"dependencies": {
"react": "^0.14.0"
},
"devDependencies": {
"babel": "^5.4.7",
"babelify": "^6.1.2",
"browserify": "^13.0.1",
"eslint": "^1.2.1",
"eslint-plugin-react": "^3.2.3",
"jasmine-core": "^2.3.4",
"jscs": "^2.1.0",
"karma": "^0.13.22",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.0.5",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs": "^1.9.17",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"watchify": "^3.7.0"
},
"scripts": {
"compile": "babel src/ --out-dir ./",
"lint": "eslint --ext .js test src && jscs -x test src",
"test": "karma start test/karma.conf.js",
"watch": "karma start test/karma.conf.js --single-run=false",
"prepublish": "npm run compile"
}
}