praecise-harness 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/bin/notice.js +3 -0
- package/package.json +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# praecise-harness
|
|
2
|
+
|
|
3
|
+
This name is held so that nobody else can publish under it. It contains no code.
|
|
4
|
+
|
|
5
|
+
The Praecise harness is published as **[@praecise/harness](https://www.npmjs.com/package/@praecise/harness)**:
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install @praecise/harness
|
|
9
|
+
```
|
package/bin/notice.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "praecise-harness",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "This name is held for the Praecise harness, which is published as @praecise/harness. Install that package instead.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Hilal Agil",
|
|
7
|
+
"repository": { "type": "git", "url": "git+https://github.com/Praecise/praecise-harness.git" },
|
|
8
|
+
"homepage": "https://github.com/Praecise/praecise-harness#readme",
|
|
9
|
+
"bin": { "praecise-harness": "bin/notice.js" },
|
|
10
|
+
"files": ["bin", "README.md"]
|
|
11
|
+
}
|