-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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
{
"name": "@telenko/xdompath",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --env prod",
"dev": "webpack --env dev",
"dev-watch": "webpack --watch --env dev",
"test": "karma start --env dev --single-run --browsers ChromeHeadless karma.conf.js",
"dev-test": "karma start --env dev --browsers Chrome karma.conf.js --debug"
},
"keywords": [
"xpath",
"shadow-dom",
"dom"
],
"author": "Andrii Telenko",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/telenko/xdompath.git"
},
"bugs": {
"url": "https://github.com/telenko/xdompath/issues"
},
"homepage": "https://github.com/telenko/xdompath#readme",
"dependencies": {
"@telenko/string-stream": "1.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.4.4",
"babel-loader": "^8.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"chai": "^4.2.0",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^3.0.5",
"mocha": "^6.0.2",
"sinon": "^7.3.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-preset": "^0.2.0",
"webpack-preset-babel": "^0.2.0",
"webpack-preset-babel-stage-0": "^0.2.0"
}
}