-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "fit_transform",
"version": "0.0.6",
"description": "Calculate and apply the optimal transformation matrix that minimizes the RMSD (root mean squared deviation) between two paired sets of points.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"test": "tape spec/**/*.js"
},
"author": "Szymon Pilkowski <ard@dreamtigers.io>",
"repository": "https://github.com/ardcore/fit_transform",
"bugs": "https://github.com/ardcore/fit_transform/issues",
"license": "MPL2",
"keywords": [
"kabsch",
"rmsd",
"chemistry",
"cheminformatics",
"molecule"
],
"dependencies": {
"svd-finder": "^0.2.3"
},
"devDependencies": {
"tap-spec": "^5.0.0",
"tape": "^4.9.2",
"@babel/core": "^7.2.2",
"babel": "^6.23.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0"
}
}