This repository has been archived by the owner on Apr 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "angularjs-enzyme",
"version": "2.0.0",
"main": "index.js",
"files": [
"dist/"
],
"scripts": {
"test": "npm run check-release-to-github && eslint src/ && jest",
"test:watch": "jest --watch",
"build": "NODE_ENV=production rollup -c",
"check-release-to-github": "release-to-github-with-changelog-pre-release-checks",
"release-to-github": "release-to-github-with-changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliverviljamaa/angularjs-enzyme.git"
},
"keywords": [
"angularjs",
"angular",
"test",
"testing",
"unit"
],
"author": "Oliver Viljamaa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverviljamaa/angularjs-enzyme/issues"
},
"homepage": "https://github.com/oliverviljamaa/angularjs-enzyme#readme",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"jsdom": "^13.0.0",
"lint-staged": "^8.0.4",
"prettier": "^1.15.1",
"release-to-github-with-changelog": "^1.2.1",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix src/",
"git add"
]
},
"dependencies": {
"angular": "^1.7.5",
"angular-mocks": "^1.7.5",
"core-js": "^2.5.7",
"lodash": "^4.17.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}