forked from ScottLogic/finput
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.88 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.88 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
{
"name": "finput",
"version": "0.0.0-development",
"description": "A vanilla-JS financial amount input control",
"license": "MIT",
"homepage": "http://scottlogic.github.io/finput/",
"repository": {
"type": "git",
"url": "https://github.com/ScottLogic/finput.git"
},
"bugs": "https://github.com/ScottLogic/finput/issues",
"dependencies": {
"is_js": "^0.9.0",
"lodash": "^4.17.4"
},
"main": "./lib/finput.js",
"unpkg": "./dist/finput.min.js",
"types": "./finput.d.ts",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^14.4.0",
"browserstacktunnel-wrapper": "^1.4.2",
"budo": "^10.0.3",
"jasmine": "^2.4.1",
"jest": "^20.0.4",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"selenium-webdriver": "^3.4.0",
"semantic-release": "^6.3.6",
"uglify-js": "^3.0.24",
"webdriver-manager": "^12.0.6"
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./lib && mkdirp ./dist/ && mkdirp ./lib/",
"build:dist": "browserify -d ./src/finput.js -s finput -o ./dist/finput.js -t babelify && uglifyjs ./dist/finput.js -o ./dist/finput.min.js",
"build:lib": "babel ./src -d ./lib",
"build": "run-s clean build:dist build:lib",
"start": "budo -l -o -p 3000 src/finput.js:dist/finput.js -- -s finput -t babelify",
"start:silent": "budo -p 3000 src/finput.js:dist/finput.js -- -s finput -t babelify",
"webdriver": "webdriver-manager",
"e2e": "jest --runInBand --config ./test/jestConfig.json",
"test": "npm-run-all \"webdriver -- update\" --parallel -r \"webdriver -- start --quiet\" test:ci",
"test:ci": "run-p -r start:silent e2e",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}