-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.69 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
72
73
74
75
76
77
78
79
80
{
"name": "dot-object-array",
"version": "0.0.0",
"description": "Implements array-like methods for Object with support for dot notation keys",
"main": "dist/objectarray.min.js",
"homepage": "https://github.com/liqueurdetoile/dotobjectarray",
"keywords": [
"object",
"array",
"array-like",
"dot notation"
],
"author": "Liqueur de Toile",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/liqueurdetoile/dotobjectarray.git"
},
"bugs": {
"url": "https://github.com/liqueurdetoile/dotobjectarray/issues"
},
"scripts": {
"build": "webpack --config webpack.conf/build.js",
"test": "cross-env BABEL_ENV=test karma start --single-run --browsers PhantomJS && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test:dry": "cross-env BABEL_ENV=test karma start --single-run --browsers ChromeHeadless",
"test:watch": "cross-env BABEL_ENV=test karma start --browsers ChromeHeadless",
"docs": "esdoc",
"prepub": "npm run test:dry && npm run build && npm run docs"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"ajv": "^6.12.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"color-themes-for-google-code-prettify": "^2.0.4",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.1.0",
"esdoc": "^1.1.0",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.2",
"karma": "^5.0.2",
"karma-babel-preprocessor": "^8.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-coverage-istanbul-reporter": "^3.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.0",
"karma-opera-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.2",
"phantomjs-prebuilt": "^2.1.16",
"semantic-release": "^17.0.7",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}