-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mframe",
"version": "1.0.0",
"description": "motion library from Cisco Momentum team",
"main": "src/lib/index.js",
"module": "src/lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/momentum-design/mframe.git"
},
"author": "Cisco Momentum Team",
"license": "MIT",
"scripts": {
"build": "yarn build:lib",
"build:lib": "node tools/lib/build.js",
"clean": "rimraf dist",
"deploy:build": "yarn run build:lib",
"dist": "yarn run clean && yarn run build:lib && yarn run lint && webpack --config tools/webpack.conf.js && webpack --config tools/webpack.common.js && webpack --config tools/webpack.component.js",
"lint": "eslint --ext .js src",
"test:CI": "jest --maxWorkers=2 --bail",
"start": "node tools/website/server",
"test": "jest",
"analyz": "yarn analyz:node",
"analyz:node": "NODE_ENV=production npm_config_report=true npm run build"
},
"jest": {
"roots": [
"<rootDir>/src/lib/"
],
"moduleFileExtensions": [
"js"
],
"moduleNameMapper": {
"mframe": "<rootDir>/src/lib"
},
"transform": {},
"snapshotSerializers": []
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"autoprefixer": "^9.6.1",
"browser-sync": "^2.26.7",
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.1.4",
"core-js-pure": "^3.1.4",
"css-loader": "^3.1.0",
"eslint": "^6.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-html": "^1.5.0",
"jsdom": "^15.1.1",
"node-sass": "^4.12.0",
"node-sass-tilde-importer": "^1.0.2",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.3.0",
"url-loader": "^2.0.1",
"webpack": "^4.35.3",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-md5-hash": "^0.0.6"
}
}