UNPKG

3.41 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-fingerprints",
3 "version": "3.0.2",
4 "description": "an Atomist SDM Extension Pack for fingerprinting code",
5 "author": {
6 "name": "Atomist",
7 "email": "support@atomist.com",
8 "url": "https://atomist.com/"
9 },
10 "license": "Apache-2.0",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/atomist/sdm-pack-fingerprints.git"
14 },
15 "keywords": [
16 "atomist",
17 "automation",
18 "sdm",
19 "clojure",
20 "fingerprints"
21 ],
22 "homepage": "https://github.com/atomist/sdm-pack-fingerprints#readme",
23 "bugs": {
24 "url": "https://github.com/atomist/sdm-pack-fingerprints/issues"
25 },
26 "dependencies": {
27 "@atomist/slack-messages": "^1.1.0",
28 "@cljs-oss/module-deps": "^1.1.1",
29 "dockerfile-ast": "0.0.12",
30 "lodash": "^4.17.10",
31 "semver": "^5.5.0",
32 "xml-js": "^1.6.7"
33 },
34 "peerDependencies": {
35 "@atomist/automation-client": ">=1.3.0",
36 "@atomist/sdm": ">=1.3.0",
37 "@atomist/sdm-core": ">=1.3.0",
38 "@atomist/sdm-pack-docker": ">=1.1.0"
39 },
40 "devDependencies": {
41 "@atomist/automation-client": "^1.3.0",
42 "@atomist/sdm": "^1.3.0",
43 "@atomist/sdm-core": "^1.3.0",
44 "@atomist/sdm-pack-docker": "^1.1.0",
45 "@types/lodash": "^4.14.116",
46 "@types/mocha": "^2.2.48",
47 "@types/node": "^9.6.25",
48 "@types/power-assert": "^1.4.29",
49 "apollo-codegen": "^0.19.1",
50 "espower-typescript": "^8.1.3",
51 "mocha": "^4.1.0",
52 "npm-run-all": "^4.1.5",
53 "power-assert": "^1.4.4",
54 "prettier": "^1.14.0",
55 "rimraf": "^2.6.2",
56 "supervisor": "^0.12.0",
57 "ts-node": "7.0.0",
58 "tslint": "5.11.0",
59 "typedoc": "^0.11.1",
60 "typescript": "3.1.6"
61 },
62 "directories": {
63 "test": "test"
64 },
65 "scripts": {
66 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
67 "build": "npm-run-all gql:gen compile:cljs compile:ts test lint doc",
68 "clean": "npm-run-all clean:compile clean:cljs clean:doc clean:run",
69 "compile": "npm-run-all gql:gen compile:cljs compile:ts",
70 "compile:cljs": "lein cljsbuild once prod",
71 "test:cljs": "lein doo node unit-tests once",
72 "clean:compile": "rimraf build dist git-info.json \"index.{d.ts,js*}\" \"{lib,test}/**/*.{d.ts,js*}\" lib/typings/types.ts",
73 "clean:dist": "npm-run-all clean clean:npm",
74 "clean:doc": "rimraf doc",
75 "clean:npm": "rimraf node_modules",
76 "clean:run": "rimraf *-v8.log profile.txt log",
77 "clean:cljs:build.js": "rimraf fingerprints/main.js",
78 "clean:cljs:lein": "lein clean",
79 "clean:cljs": "npm-run-all clean:cljs:lein clean:cljs:build.js",
80 "compile:ts": "tsc --project .",
81 "fmt": "tsfmt --replace",
82 "fmt:gql": "prettier --write \"**/*.graphql\"",
83 "git:info": "atm-git-info",
84 "gql:copy": "copyfiles \"./src/**/*.graphql\" build",
85 "gql:gen": "atm-gql-gen",
86 "doc": "typedoc --mode modules --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
87 "lint": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
88 "lint:fix": "npm run lint -- --fix",
89 "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
90 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
91 "typedoc": "npm run doc"
92 },
93 "engines": {
94 "node": "9.x.x",
95 "npm": "5.x.x"
96 }
97}