forked from rdkit/RDKitjs-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1015 Bytes
/
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
{
"name": "rdkit",
"version": "0.1.1",
"description": "port RDKit to js using emscripten",
"keywords": [],
"main": "dist/rdkit.js",
"scripts": {
"test": "npm run build-test && mocha test/unit --require should --reporter mocha-better-spec-reporter --recursive",
"build-test": "cat javascript/pre.js build/src/rdkit.js javascript/post.js > test/rdkit.js",
"build": "cat javascript/pre.js build/src/rdkit.js javascript/post.js > dist/rdkit.js"
},
"repository": "thegodone/RDKitjs",
"author": "Guillaume Godin",
"contributors": [
"Michaël Zasso",
"Giuseppe Marco Randazzo"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/thegodone/RDKitjs/issues"
},
"homepage": "https://github.com/thegodone/RDKitjs",
"devDependencies": {
"mocha": "^2.2.5",
"mocha-better-spec-reporter": "^2.1.1",
"should": "^7.0.4"
},
"dependencies": {
"async": "^1.4.2",
"mongodb": "^2.0.42",
"underscore": "^1.8.3",
"victor": "^1.1.0"
}
}