-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "ld-vue",
"version": "0.1.1",
"description": "A library to integrate Launch Darkly with Vue",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "rimraf lib/* && babel src -d lib --ignore *.test.js",
"lint": "eslint --cache --format 'node_modules/eslint-friendly-formatter' ./src",
"build-publish": "npm run build && npm version patch -m 'Upgrade to %s' && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yusinto/ld-vue.git"
},
"keywords": [
"launch",
"darkly",
"vue",
"feature",
"flags",
"toggle",
"toggling",
"a/b",
"testing",
"js",
"javascript"
],
"author": "Yusinto Ngadiman",
"license": "MIT",
"bugs": {
"url": "https://github.com/yusinto/ld-vue/issues"
},
"homepage": "https://github.com/yusinto/ld-vue#readme",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"ip": "^1.1.5",
"ldclient-js": "^2.6.0",
"lodash.camelcase": "^4.3.0",
"ua-parser-js": "^0.7.18",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/node": "^7.0.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-friendly-formatter": "^4.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^23.1.0",
"rimraf": "^2.6.2"
}
}