-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "expression-evaluator",
"version": "0.0.1",
"description": "Expression evaluator library",
"homepage": "http://tsv2013.github.io/expression-evaluator",
"authors": [
"Serge T <@domain.com>"
],
"private": false,
"license": "MIT",
"main": "dist/expression-evaluator.js",
"keywords": [
"expression",
"evaluator"
],
"moduleType": "umd",
"ignore": [
".travis.yml",
".coveralls.yml",
".bithoundrc",
"deploy-ghpages.cmd"
],
"repository": {
"type": "git",
"url": "https://github.com/tsv2013/expression-evaluator.git"
},
"scripts": {
"build": "webpack",
"test": "jest",
"testDev": "jest --watch",
"release": "standard-version --message \"Release: %s\""
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^23.3.3",
"@types/node": "^7.0.5",
"jest": "^23.6.0",
"json-loader": "latest",
"standard-version": "^4.0.0",
"ts-jest": "^23.10.3",
"ts-loader": "latest",
"typescript": "latest",
"underscore": "^1.8.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}