-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.48 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
{
"name": "lambda-expression",
"version": "0.1.3",
"description": "Utility to analyze function (js) and arrow functions (ts), and create metadata of expressions, the initial scope is that it seeks to solve simple expressions. And later advance to encompass complex expressions.",
"main": "./src/main.js",
"types": "./src/main.d.ts",
"scripts": {
"test": "npm run test-es5 & npm run test-es2015",
"test-es5": "tsc -p src/test/tsconfig-es5.json & mocha src/**/*.spec.js",
"test-es2015": "tsc -p src/test/tsconfig-es2015.json & mocha src/**/*.spec.js",
"test-grep": "tsc & mocha src/**/*.spec.js --grep",
"test-single": "tsc & mocha src/**/*.spec.js --grep Mapper --debug-brk",
"showcase": "cd .\\showcase\\ npm run start-showcase",
"publish-npm": "tsc & npm publish"
},
"keywords": [
"linq",
"linq-expression",
"lambda",
"lambda-expression",
"expression",
"arrow-function",
"function"
],
"author": "Fernando Leal",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/fernandocode/lambda-expression.git"
},
"bugs": {
"url": "https://github.com/fernandocode/lambda-expression/issues"
},
"homepage": "https://github.com/fernandocode/lambda-expression#readme",
"devDependencies": {
"@types/chai": "^4.1.1",
"@types/mocha": "^2.2.46",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "3.0.3"
},
"dependencies": {}
}