-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.31 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
{
"name": "modojs",
"version": "2.0.6",
"description": "Component collection for React applications.",
"main": "dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:js && npm run build:style && robocopy ./src ./dist package.json || echo 'done'",
"build:js": "babel ./src --out-dir ./dist -s inline",
"watch": "babel ./src/**/* --watch --out-dir ./dist -s inline",
"prepublishOnly": "npm run build",
"build:style": "sass src/modo.scss dist/modo.css && sass src/themes/modern.scss dist/themes/modern.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Paratron/modoJS.git"
},
"author": "Christian Engel @paratron",
"license": "MIT",
"bugs": {
"url": "https://github.com/Paratron/modoJS/issues"
},
"homepage": "https://github.com/Paratron/modoJS#readme",
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@babel/plugin-transform-react-jsx": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"foundation-sites": "6.4.3",
"jest": "23.6.0",
"prop-types": "15.6.2",
"react": "16.8.0",
"react-dom": "16.8.0",
"sass": "1.29.0"
}
}