-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (59 loc) · 1.92 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": "ee-hack",
"version": "0.0.1",
"description": "Hackers server for empty epsilon",
"author": "Amir Arad ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix/typescript-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:wix/typescript-boilerplate.git"
},
"files":["dist/src"],
"testGlob": "./dist/test/**/*.spec.js?(x)",
"homepage": "https://github.com/wix/typescript-boilerplate#readme",
"keywords": ["typescript", "tdd"],
"main": "dist/src/index.js",
"browser": "dist/src/index.js",
"scripts": {
"build": "tsc -d",
"bundle": "webpack --progress",
"pretest": "rimraf dist && yarn build && yarn bundle",
"reset": "rimraf node_modules dist && yarn install && yarn test",
"test": "yarn test:node && yarn test:browser",
"test:node": "mocha --require dist/test/setup.js --require source-map-support/register --reporter mocha-env-reporter dist/test/*.spec.js",
"test:browser": "karma start --single-run",
"start": "rimraf dist && yarn build && concurrently --kill-others --success first \"yarn build -- -w\" \"webpack-dev-server --no-info\""
},
"devDependencies": {
"@types/chai": "~4.1.2",
"@types/mocha": "~2.2.41",
"@types/sinon": "~4.1.0",
"@types/sinon-chai": "~2.7.28",
"chai": "~4.1.0",
"chai-subset": "~1.6.0",
"concurrently": "~3.5.0",
"glob": "~7.1.2",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-env-reporter": "~1.0.13",
"karma-firefox-launcher": "~1.1.0",
"karma-mocha": "~1.3.0",
"mocha": "~5.0.0",
"mocha-env-reporter": "~3.0.0",
"mocha-loader": "~1.1.1",
"rimraf": "~2.6.1",
"sinon": "~4.3.0",
"sinon-chai": "~2.14.0",
"source-map-support": "~0.5.0",
"typescript": "~2.6.2",
"tslib":"~1.9.0",
"webpack": "~3.11.0",
"webpack-dev-server": "~2.11.1"
},
"peerDependencies": {
"tslib":"~1.7.1"
}
}