-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
59 lines (59 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
53
54
55
56
57
58
59
{
"name": "hello_jest",
"version": "1.0.0",
"description": "Example npm module using jest for testing.",
"main": "dist/index.js",
"files": [
"dist/my_plugin.js",
"dist/index.js"
],
"dependencies": {
"jquery": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browserify": "*",
"coveralls": "^3.0.0",
"eslint": "^4.13.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.4.3",
"jest-dev-server": "^4.4.0",
"jest-puppeteer": "^4.4.0",
"opener": "^1.4.0",
"parcelify": "^0.12.5",
"puppeteer": "^3.0.2"
},
"scripts": {
"build-css": "touch html/bundle.css && parcelify html/entry.js -c html/bundle.css",
"build-js": "browserify html/entry.js > html/bundle.js",
"start": "npm run build-css && npm run build-js && opener html/index.html",
"build": "babel src -D -d dist && npm run build-css && npm run build-js",
"prepare": "npm run build",
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
"lint": "eslint src test --ignore-pattern tests/coverage*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AaronWatters/hello_jest.git"
},
"keywords": [
"hello",
"world",
"jest",
"testing",
"npm",
"jquery",
"plugin"
],
"author": "Aaron Watters",
"license": "ISC",
"bugs": {
"url": "https://github.com/AaronWatters/hello_jest/issues"
},
"homepage": "https://github.com/AaronWatters/hello_jest#readme"
}