-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.64 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
{
"name": "@acast-tech/test-helpers",
"version": "14.1.0",
"description": "A bunch of helper methods that greatly simplify asynchronous unit and acceptance testing of front end web apps.",
"main": "dist/index.js",
"scripts": {
"pretest": "npm run lint",
"lint": "prettier --single-quote --trailing-comma es5 --write 'src/**/*.js'",
"test": "webpack && testem ci -f ./testem/testem.js",
"test:dev": "webpack && testem run -f ./testem/testem-dev.js",
"build": "npm run build:production",
"build:production": "babel src --out-dir dist --copy-files",
"build:watch": "npm run build:production -- --watch",
"prepublish": "npm run build && npm run test && npm shrinkwrap --dev",
"document": "documentation readme src --section API --config documentation.yml && markdown-toc -i README.md",
"env": "env"
},
"files": [
"dist"
],
"keywords": [
"test helpers",
"asynchronous",
"acceptance",
"unit"
],
"repository": "https://github.com/acast-tech/acast-test-helpers",
"bugs": "https://github.com/acast-tech/acast-test-helpers/issues",
"license": "GPL-3.0",
"devDependencies": {
"babel-cli": "6.8.0",
"babel-loader": "6.2.4",
"babel-polyfill": "6.9.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-2": "6.5.0",
"chai": "3.5.0",
"dirty-chai": "1.2.2",
"documentation": "4.0.0-rc.1",
"glob": "7.0.5",
"markdown-toc": "1.1.0",
"phantomjs": "2.1.7",
"prettier": "1.4.2",
"sinon": "1.17.4",
"sinon-chai": "2.8.0",
"testem": "1.7.0",
"webpack": "1.13.0"
},
"dependencies": {
"fake-xml-http-request": "1.4.0",
"jquery": "3.3.1"
}
}