jw-ng-forward
Version:
Temporary package. The default solution for those that want to write Angular 2.x style code in Angular 1.x
97 lines (96 loc) • 3.15 kB
JSON
{
"name": "jw-ng-forward",
"version": "2.3.2",
"description": "Temporary package. The default solution for those that want to write Angular 2.x style code in Angular 1.x",
"main": "index.js",
"jsnext:main": "./es6/index.js",
"repository": {
"type": "git",
"url": "https://github.com/j-walker23/ng-forward"
},
"scripts": {
"shit": "rm -rf dist",
"dev:a": "npm run shit && babel lib --out-dir dist --extensions '.ts' --ignore 'lib/**/*.spec.ts'",
"dev:b": "nodemon --watch babel.config.js --exec npm run dev:a",
"dev:w": "nodemon --watch tsconfig.json --watch webpack.config.ts --exec npm run dev",
"build:dev": "npx webpack --mode development",
"test": "karma start karma.conf.js",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:old": "npm run shit && npm run build:types && npm run build:js",
"build": "npm run shit && tsc && cp package.json dist/",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel lib --out-dir dist --extensions '.ts' --ignore 'lib/tests/*' --ignore 'lib/**/*.spec.ts'",
"oldbuild:js": "babel lib --out-dir dist --source-maps --extensions '.ts' --ignore 'lib/tests/*' --ignore 'lib/**/*.spec.ts'",
"dev": "nodemon --watch babel.config.js --watch lib --exec npm run build:js"
},
"keywords": [
"angular",
"angular2",
"angularjs",
"annotations",
"decorators",
"ecmascript6"
],
"contributors": [
{
"name": "Mike Ryan",
"email": "mike.ryan52@gmail.com"
},
{
"name": "Tim Kindberg",
"email": "timkindberg@gmail.com"
}
],
"license": "ISC",
"dependencies": {
"@uirouter/angularjs": "*",
"angular": "*",
"jquery": "*",
"reflect-metadata": "*",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-typescript": "^7.1.0",
"@types/angular": "*",
"@types/angular-mocks": "*",
"@types/chai": "^4.1.7",
"@types/jquery": "^3.3.28",
"@types/mocha": "^5.2.5",
"@types/sinon": "^7.0.0",
"@types/sinon-chai": "^3.2.2",
"@types/webpack": "*",
"angular-mocks": "^1.5.7",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.0",
"core-js": "*",
"karma": "^3.1.4",
"karma-angular": "^0.0.6",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"phantomjs-prebuilt": "^2.1.16",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "*",
"webpack": "^4.27.0",
"webpack-cli": "^3.1.2",
"yargs": "^12.0.5"
}
}