-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.2 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
{
"name": "modalian",
"version": "0.1.8",
"description": "simple react component",
"private": false,
"keywords": [
"react",
"reactjs",
"component",
"modal"
],
"main": "dist/Modalian.js",
"author": "Arash Manteghi - @arashmanteghi",
"license": "MIT",
"homepage": "https://arashmanteghi.github.io/modalian/",
"bugs": {
"url": "https://github.com/arashmanteghi/modalian/issues",
"email": "arash.manteghi@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/arashmanteghi/modalian.git"
},
"dependencies": {
"babel-cli": "^6.26.0",
"custom-react-scripts": "0.2.1",
"node-sass-chokidar": "^0.0.3",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dist": "node-sass-chokidar src/modalian/Modalian.scss -o ./dist && ./node_modules/.bin/babel ./src/modalian/ --presets=env,react --out-dir ./dist --copy-files"
}
}