-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
48
49
50
51
52
53
54
55
{
"name": "forx",
"version": "0.0.12",
"description": "Validation library",
"main": "lib/forx.js",
"module": "src/index.js",
"files": [
"lib/forx.js"
],
"license": "MIT",
"scripts": {
"prebuild": "npm run clean",
"predev": "npm run clean",
"clean": "rimraf ./lib/*",
"build": "cross-env NODE_ENV=production webpack --optimize-minimize -p --config config/webpack.production.config.js",
"dev": "cross-env NODE_ENV=development webpack --config config/webpack.dev.config.js",
"dev:watch": "cross-env NODE_ENV=development webpack --watch --config config/webpack.dev.config.js",
"lint": "eslint ./src",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"lodash": "^4.17.4",
"q3000": "0.0.9"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4",
"lodash-webpack-plugin": "^0.11.4",
"rimraf": "^2.6.1",
"webpack": "^3.5.3",
"webpack-bundle-analyzer": "^2.9.0"
},
"jest": {
"collectCoverage": false,
"testEnvironment": "node",
"coverageDirectory": "./coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/test/"
]
}
}