-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.61 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
51
52
53
54
55
56
57
58
{
"name": "rdkit",
"version": "0.5.1",
"description": "RDKit port to JS using emscripten",
"keywords": [
"rdkit"
],
"main": "lib/index.js",
"scripts": {
"build": "npm run compile-emcc && npm run build-dist",
"build-dist": "mkdir -p dist && cat javascript/pre.js out/rdkit.js javascript/post.js > dist/rdkit.js && cp out/rdkit.wasm dist/rdkit.wasm",
"compile-debug": "npm run compile-emcc -- --debug",
"compile-emcc": "node scripts/compile",
"clean": "rm -rf dist out",
"eslint": "eslint scripts lib __tests__",
"eslint-fix": "npm run eslint -- --fix",
"install-deps": "node scripts/install",
"prepublishOnly": "npm run build",
"test": "npm run build && npm run test-only",
"test-coverage": "npm run test-jest -- --coverage",
"test-jest": "jest",
"test-only": "npm run test-jest && npm run eslint"
},
"files": [
"dist",
"lib"
],
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/deps/",
"/old/"
]
},
"repository": "cheminfo/RDKitjs",
"author": "Guillaume Godin",
"contributors": [
"Michaël Zasso",
"Giuseppe Marco Randazzo"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/cheminfo/RDKitjs/issues"
},
"homepage": "https://github.com/cheminfo/RDKitjs",
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-cheminfo": "^1.17.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"fs-extra": "^5.0.0",
"jest": "^22.3.0",
"make-promises-safe": "^1.1.0",
"request": "^2.83.0",
"tar": "^4.4.0"
}
}