-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "whatap-designed-components",
"version": "0.1.5",
"description": "Designed components used at WhaTap",
"main": "src/index.js",
"module": "es/index.js",
"files": [
"umd/",
"es/",
"src/"
],
"scripts": {
"test:assert": "npm run build:es6 && node ./es/test/ColorPicker.test.js && node ./es/test/Palette.test.js && node ./es/test/HeapSort.test.js && node ./es/test/QuickSort.test.js",
"build:umd": "webpack",
"build:es6": "babel src --out-dir es",
"build:all": "npm run test:assert && npm run build:umd && npm run build:es6"
},
"author": "Anthony Lee",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"classnames": "^2.2.6",
"node-localstorage": "^1.3.1",
"prop-types": "^15.6.2",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"clean-webpack-plugin": "^0.1.19"
}
}