This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.48 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
{
"name": "platform-tools",
"version": "0.3.3",
"description": "A toolchain to build and compile native dependencies with and for Node.",
"main": "index.js",
"scripts": {
"test": "node test/test-runner.js",
"doc": "jsdoc2md lib/platform_tools.js > doc/API.md && node -e \"const fs = require('fs');fs.writeFile('README.md', fs.readFileSync('doc/README.md'));['doc/README.md', 'doc/API.md', 'doc/LICENSE.md'].forEach(function(el){fs.appendFileSync('README.md',fs.readFileSync(el))})\"",
"smoke-deps": "git clone -b feature/platform-tools --depth=1 https://github.com/eljefedelrodeodeljefe/node test/fixtures/sources/smoke/node",
"smoke-node": "cd test/fixtures/sources/smoke/node && ./configure --no-target-type && make -j8 > pt_debug_log.txt && cd ../../../../../ && node test/smoke/node.js",
"smoke": "npm run smoke-deps && npm run smoke-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eljefedelrodeodeljefe/platform-tools.git"
},
"keywords": [
"compiler",
"toolchain",
"linker",
"c",
"c++",
"cpp",
"native",
"addons"
],
"author": "Robert Jefe Lindstaedt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eljefedelrodeodeljefe/platform-tools/issues"
},
"homepage": "https://github.com/eljefedelrodeodeljefe/platform-tools#readme",
"devDependencies": {
"jsdoc-to-markdown": "^1.3.6",
"nan": "^2.3.5",
"tape": "^4.6.0"
},
"dependencies": {}
}