-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.05 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
{
"name": "vuex-c3s",
"version": "1.1.0",
"description": "SDK for the Citizen Science Framework API, using Swagger and Vuex (requires JTOS >= 0.8.0 to be running on your server side)",
"directories": {
"test": "test"
},
"main": "dist/vuex-c3s.es.js",
"files": [
"dist",
"test"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"minify": "uglifyjs dist/vuex-c3s.umd.js --output dist/vuex-c3s.min.js --compress --mangle",
"test": "jest",
"docs": "jsdoc -c jsdoc.conf.json src/ ./README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/citizensciencecenter/vuex-c3s.git"
},
"keywords": [
"vuex",
"vue",
"i18n",
"c3s",
"swagger",
"citizen-science"
],
"author": {
"name": "Chris Gwilliams",
"email": "[email protected]",
"url": "https://github.com/encima"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/citizensciencecenter/vuex-c3s/issues"
},
"homepage": "https://github.com/citizensciencecenter/vuex-c3s#readme",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"rison-node": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"@babel/runtime": "^7.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"crypto-js": "^3.1.9-1",
"docdash": "^1.0.1",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-html": "^5.0.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"jsdoc-export-default-interop": "^0.3.1",
"rollup": "^0.67.1",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"swagger-client": "^3.8.23",
"vue": "^2.5.17",
"vue-jest": "^3.0.0",
"vuex": "^3.0.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
}
}
}