-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·51 lines (51 loc) · 1.22 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
{
"name": "@nuxtjs/python",
"version": "0.0.2",
"description": "Write Nuxt.js Apps in Python",
"license": "MIT",
"contributors": [
{
"name": "Sebastian Silva <[email protected]>"
}
],
"main": "lib/module.js",
"repository": "https://github.com/nuxt-community/python-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt example",
"lint": "eslint lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"py-loader": "martim00/python-webpack-loader"
},
"devDependencies": {
"@nuxtjs/pwa": "^2.0.5",
"codecov": "latest",
"eslint": "^4.17.0",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "^21.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"jest": "^22.2.2",
"jsdom": "latest",
"nuxt": "latest",
"standard-version": "latest"
}
}