From 81f6ec7b799986c5b7eb37cd7298a5e50a3ac576 Mon Sep 17 00:00:00 2001 From: Alexander Rose <alex.rose@rcsb.org> Date: Wed, 21 Feb 2018 12:12:26 -0800 Subject: [PATCH] tweaked paths in package.json --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index c40902f11..6e0f8d762 100644 --- a/package.json +++ b/package.json @@ -11,10 +11,10 @@ "url": "https://github.com/mol-star/mol-star-proto/issues" }, "scripts": { - "lint": "./node_modules/.bin/tslint src/**/*.ts", - "build": "./node_modules/.bin/tsc", - "watch": "./node_modules/.bin/tsc -watch", - "test": "./node_modules/.bin/jest", + "lint": "tslint src/**/*.ts", + "build": "tsc", + "watch": "tsc -watch", + "test": "jest", "script": "node build/node_modules/script.js" }, "jest": { @@ -23,7 +23,7 @@ "js" ], "transform": { - "\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js" + "\\.ts$": "ts-jest" }, "moduleDirectories": [ "node_modules", -- GitLab