-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 KB
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
48
49
{
"name": "conditional-expression",
"version": "1.1.2",
"description": "JavaScript functional conditional expression",
"main": "dist/conditional-expression.min.js",
"module": "src/index.js",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"build": "webpack --progress --mode production",
"lint": "eslint src test",
"mocha": "NODE_ENV=test nyc mocha test/*.test.js --require @babel/register --require @babel/polyfill",
"testdev": "lib=dev npm run mocha",
"test": "npm run lint && npm run build && lib=prod npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MartinGentleman/conditional-expression.git"
},
"keywords": [
"functional",
"conditional",
"expression",
"match",
"pattern",
"matching"
],
"author": "Martin Novak <ragnarecek@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MartinGentleman/conditional-expression/issues"
},
"homepage": "https://github.com/MartinGentleman/conditional-expression#readme",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"path": "^0.12.7",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
}
}