Skip to content

Commit cfa352a

Browse files
committed
Add package.json
1 parent 2716117 commit cfa352a

5 files changed

Lines changed: 30 additions & 1 deletion

File tree

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,17 @@ Clone the project with
6767
Requirements
6868
~~~~~~~~~~~~
6969

70-
You will need `Python 3`_ and Poetry_.
70+
You will need `Python 3`_ and Poetry_ and Node.js_ with npm_.
7171

7272
Install the development dependencies with
7373

7474
::
7575

7676
$ poetry install
77+
$ npm install
7778

79+
.. _Node.js: https://nodejs.org/
80+
.. _npm: https://www.npmjs.com/
7881
.. _Poetry: https://poetry.eustace.io/
7982
.. _Python 3: https://www.python.org/
8083

package-lock.json

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "@seamapi/python",
3+
"private": true,
4+
"type": "module",
5+
"scripts": {
6+
"generate": true
7+
},
8+
"devDependencies": {}
9+
}

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,8 @@ rstcheck = "^6.1.2"
2525
[build-system]
2626
requires = ["poetry>=1.8"]
2727
build-backend = "poetry.masonry.api"
28+
29+
[tool.pytest.ini_options]
30+
norecursedirs = [
31+
"node_modules"
32+
]

0 commit comments

Comments
 (0)