This repository has been archived by the owner on Mar 29, 2019. It is now read-only.
forked from braintree/restricted-input
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 2.17 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
55
56
57
58
59
60
61
62
{
"name": "restricted-input",
"version": "1.2.6",
"description": "Restrict inputs to certain valid characters (e.g. formatting phone or card numbers)",
"author": "Braintree <[email protected]> (https://www.braintreepayments.com/)",
"license": "MIT",
"main": "dist/restricted-input.js",
"homepage": "https://github.com/braintree/restricted-input",
"repository": {
"type": "git",
"url": "git://github.com/braintree/restricted-input.git"
},
"bugs": "https://github.com/braintree/restricted-input/issues",
"keywords": [
"input",
"formatting",
"filtering",
"text",
"spacing",
"restrict"
],
"scripts": {
"build": "mkdir -p dist; browserify ./lib/main.js -o dist/restricted-input.js -s RestrictedInput -v",
"doc": "jsdoc -r -R README.md -d jsdoc lib/",
"doc:watch": "npm run doc && chokidar 'lib/**/*.js' -c 'npm run doc'",
"start": "node ./test/support/server.js",
"development": "npm run build & npm start & chokidar 'lib/**/*.js' -c 'npm run build; echo $(tput setaf 2)rebuilt$(tput sgr0)'",
"lint": "eslint lib test",
"test": "npm run lint && npm run test:unit",
"test:watch": "karma start config/karma.js",
"test:unit": "karma start config/karma.js --single-run",
"test:integration": ". ./.env && bundle exec rake sauce:spec test_files=spec",
"test:all": "npm run test && npm run test:integration",
"publish:demo": "./publish-gh-pages.sh",
"prepublish": "npm run build"
},
"dependencies": {
"browser-detection": "github:github/browser-detection#56de2e87f46f1e7d2c0224bf9806d81e67009439"
},
"devDependencies": {
"browserify": "13.0.1",
"chai": "3.5.0",
"chokidar-cli": "1.2.0",
"eslint": "2.7.0",
"eslint-config-braintree": "1.0.2",
"express": "4.14.0",
"jsdoc": "3.4.0",
"karma": "1.1.1",
"karma-browserify": "5.1.0",
"karma-chai-sinon": "0.1.5",
"karma-mocha": "1.1.1",
"karma-mocha-reporter": "2.0.4",
"karma-phantomjs-launcher": "1.0.1",
"lodash.assign": "4.0.9",
"mocha": "3.0.0",
"phantomjs-prebuilt": "2.1.7",
"sauce-connect-launcher": "0.14.0",
"sinon": "1.17.4",
"sinon-chai": "2.8.0",
"watchify": "^3.7.0"
}
}