-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "numpy-parser",
"version": "1.2.3",
"description": "A JS parser for binary .npy files.",
"main": "dist/main.js",
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register \"test/**/*.spec.js\"",
"build": "BABEL_ENV=production ./node_modules/.bin/babel src/ --out-dir dist/ --source-maps",
"prepublishOnly": "npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ludwigschubert/js-numpy-parser.git"
},
"keywords": [
"javascript",
"numpy",
"npy",
"parser"
],
"author": "Ludwig Schubert",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ludwigschubert/js-numpy-parser/issues"
},
"homepage": "https://github.com/ludwigschubert/js-numpy-parser#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-minify": "^0.5.0",
"babel-preset-minify": "^0.5.0",
"mocha": "^5.2.0"
}
}