This repository has been archived by the owner on Jan 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
{
"name": "metal-uri",
"version": "3.1.0",
"description": "Class for parsing and formatting URIs.",
"license": "BSD",
"repository": "metal/metal-uri",
"engines": {
"node": ">=0.12.0",
"npm": ">=3.0.0"
},
"main": "lib/Uri.js",
"module": "lib/Uri.js",
"jsnext:main": "src/Uri.js",
"files": [
"lib",
"src",
"test"
],
"scripts": {
"checkFormat": "npm run prettier -- --list-different",
"compile": "babel --presets env -d lib/ src/",
"format": "npm run prettier -- --write",
"lint": "eslint '{src,test}/**/*.js'",
"precommit": "lint-staged",
"prepublish": "npm run compile",
"prettier": "prettier-eslint '{src,test}/**/*.js'",
"test": "karma start",
"test:saucelabs": "karma start karma-saucelabs.conf.js"
},
"keywords": [
"metal"
],
"dependencies": {
"metal": "^2.0.0",
"metal-structs": "^1.0.0",
"path-browserify": "0.0.0",
"resolve-pathname": "^2.2.0",
"url-parse": "^1.1.9"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-liferay": "^2.0.16",
"karma": "^1.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "~1.1.0",
"karma-webpack": "^2.0.5",
"lint-staged": "^5.0.0",
"mocha": "^4.0.1",
"prettier-eslint-cli": "^4.4.0",
"webpack": "^3.5.5"
},
"react-native": {
"path": "path-browserify"
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
}
}