-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "pybi",
"version": "0.0.2",
"description": "An implementation of most of Python's built-in functions in JavaScript.",
"main": "src/index.js",
"repository": "https://github.com/jneuendorf/pybi-js.git",
"author": "Jim Neuendorf <jim.neuendorf@gmx.de>",
"license": "MIT",
"scripts": {
"play": "node playground.js",
"generate_test_data": "python scripts/generate.py",
"gen": "npm run generate_test_data",
"todo": "python scripts/todo.py",
"test": "jest",
"cov": "jest --coverage"
},
"optionalDependencies": {
"hash-sum": "^2.0.0",
"sprintf-js": "^1.1.2",
"system-sleep": "^1.3.6"
},
"devDependencies": {
"hash-sum": "^2.0.0",
"jest": "^25.1.0",
"sprintf-js": "^1.1.2"
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/_utils.js",
"__tests__/oo__.*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules",
"/__tests__"
]
}
}