-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"name": "@odiak/numjs",
"description": "NumPy-like N-dimensional array implementation",
"version": "0.4.0",
"author": "Kaido Iwamoto <[email protected]>",
"dependencies": {
"@types/node": "^12.0.7"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"files": [
"dist"
],
"homepage": "https://github.com/odiak/numjs",
"keywords": [
"matrix",
"ndarray",
"numpy",
"vector"
],
"license": "MIT",
"main": "dist/index.js",
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always",
"jsxBracketSameLine": false
},
"repository": {
"type": "git",
"url": "https://github.com/odiak/numjs"
},
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
}
}