-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.62 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
{
"name": "project-name",
"version": "0.1.0",
"description": "",
"main": "src/project_name.js",
"scripts": {
"package": "./node_modules/browserify/bin/cmd.js src/project_name.js -o assets/project_name.js.packaged.js",
"package:min": "./node_modules/browserify/bin/cmd.js src/project_name.js -o assets/project_name.js.packaged.js | sed '1s/^/var /' | node_modules/google-closure-compiler/cli.js > assets/project_name.packaged.min.js",
"package:watch": "./node_modules/watchify/bin/cmd.js src/project_name.js -o assets/project_name.packaged.js -v",
"test:browser": "./node_modules/.bin/wdio wdio.conf.js",
"test": "./node_modules/karma/bin/karma start",
"webdriver:start": "webdriver-manager update && webdriver-manager start"
},
"repository": {
"type": "git",
"url": "[email protected]:wolfoo2931/project-name.git"
},
"keywords": [
"modal",
"forms"
],
"author": "Oliver Wolf",
"license": "MIT",
"bugs": {
"url": "https://github.com/wolfoo2931/project-name/issues"
},
"homepage": "https://github.com/wolfoo2931/project-name#readme",
"dependencies": {},
"devDependencies": {
"@wdio/cli": "5.4.17",
"@wdio/jasmine-framework": "^5.4.14",
"@wdio/local-runner": "5.4.17",
"@wdio/spec-reporter": "^5.4.15",
"browserify": "^16.2.3",
"google-closure-compiler": "^20180610.0.2",
"jasmine-core": "^3.3.0",
"karma": "^4.0.0",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"watchify": "^3.11.0",
"webdriverio": "^5.4.17"
}
}