-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 977 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 977 Bytes
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
{
"name": "diy-angular",
"version": "0.4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/my-js-ventures/diy-angular.git"
},
"author": "Gopikrishna Sathyamurthy",
"license": "ISC",
"dependencies": {
"jquery": "3.3.1",
"lodash": "4.17.10"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"code": "5.2.0",
"eslint": "4.19.1",
"isparta": "4.0.0",
"mocha": "5.1.1",
"sinon": "4.5.0",
"webpack": "4.6.0"
},
"scripts": {
"build": "webpack -p",
"coverage": "babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha",
"coverage:html": "npm run coverage --report html",
"eslint": "eslint . --ignore-path .gitignore",
"test": "npm run coverage -- --threshold 100"
}
}