-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.37 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
73
74
75
76
77
78
79
80
81
82
{
"name": "momentum-ui-motion",
"version": "1.0.1",
"description": "motion component library from Cisco Momentum team",
"main": "src/lib/index.js",
"module": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/momentum-design/momentum-ui-motion.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"
},
"jest": {
"roots": [
"<rootDir>/src/lib/"
],
"moduleFileExtensions": [
"js"
],
"moduleNameMapper": {
"@momentum-ui/motion": "<rootDir>/src/lib"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"snapshotSerializers": []
},
"dependencies": {
"mframe": "^1.2.0"
},
"peerDependencies": {
"core-js": "^3.1.4"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.4",
"@babel/runtime": "^7.5.4",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"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",
"raw-loader": "^4.0.1",
"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-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-md5-hash": "^0.0.6"
}
}