-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "testcheck",
"version": "1.0.0-rc.2",
"description": "Property testing for JavaScript",
"homepage": "http://leebyron.com/testcheck-js",
"license": "BSD-3-Clause",
"author": {
"name": "Lee Byron",
"url": "https://github.com/leebyron"
},
"repository": {
"type": "git",
"url": "git://github.com/leebyron/testcheck-js"
},
"bugs": {
"url": "https://github.com/leebyron/testcheck-js/issues"
},
"main": "dist/testcheck.js",
"types": "dist/testcheck.d.ts",
"devDependencies": {
"flow-bin": "0.68.0",
"jasmine-node": "^1.14.5",
"typescript": "2.7.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"test",
"unit test",
"property test",
"quickcheck",
"doublecheck",
"testcheck",
"generative"
],
"scripts": {
"test": "npm run rebuild && npm run testonly && npm run flow-check && npm run ts-check && integrations/test-all",
"testonly": "jasmine-node test",
"flow-check": "flow check",
"ts-check": "DIFF=$(tsc --noEmit --noImplicitAny --strictNullChecks test/types.ts | diff test/types.ts.expected -); if [ -n \"$DIFF\" ]; then echo \"$DIFF\"; exit 1; fi;",
"ts-check-update": "tsc --noEmit --noImplicitAny --strictNullChecks test/types.ts > test/types.ts.expected; exit 0",
"build": "rm -f dist/* && lein do clean, cljsbuild once && cp type-definitions/* dist/",
"rebuild": "lein do cljsbuild once && cp type-definitions/* dist/",
"prepublishOnly": "npm run build"
}
}