-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 2.04 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
{
"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"
},
"main": "./lib/finput.js",
"unpkg": "./dist/finput.js",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "7.4.2",
"browserstacktunnel-wrapper": "2.0.4",
"cross-env": "5.2.0",
"http-server": "0.11.1",
"husky": "1.3.1",
"jest": "24.6.0",
"mkdirp": "0.5.1",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3",
"rollup": "1.8.0",
"rollup-plugin-babel-minify": "8.0.0",
"rollup-plugin-commonjs": "9.2.3",
"rollup-plugin-node-resolve": "4.0.1",
"rollup-plugin-typescript2": "0.20.1",
"selenium-webdriver": "3.6.0",
"semantic-release": "15.13.3",
"tslint": "5.15.0",
"typescript": "3.4.1",
"webdriver-manager": "13.0.0"
},
"scripts": {
"compile": "tsc",
"clean": "rimraf ./dist && rimraf ./lib && mkdirp ./dist/ && mkdirp ./lib/",
"build:dev": "cross-env environment=DEVELOPMENT rollup -c",
"build:prod": "cross-env environment=PRODUCTION rollup -c",
"lint": "tslint src/**/*.ts",
"watch": "cross-env environment=DEVELOPMENT rollup -cw",
"serve": "http-server",
"webdriver:update": "webdriver-manager update",
"webdriver:start": "webdriver-manager start --quiet",
"test": "npm-run-all webdriver:update build:prod --parallel --race serve webdriver:start test:ci",
"test:unit": "jest --runInBand --config ./test/jestConfig.json test/unit",
"test:e2e": "jest --runInBand --config ./test/jestConfig.json test/specs",
"test:ci": "npm-run-all --parallel test:unit test:e2e",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run compile"
}
}
}