-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 936 Bytes
/
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
{
"name": "parametric-components",
"version": "2.1.40",
"description": "",
"main": "header.js",
"scripts": {
"prebuild": "rimraf dist",
"build:cjs": "cross-env BABEL_ENV=cjs babel src -d dist/cjs",
"build:es": "cross-env BABEL_ENV=es babel src -d dist/es",
"build": "npm run build:cjs && npm run build:es",
"dev": "concurrently \"yarn run build:es --watch\" \"yarn run build:cjs --watch\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^4.1.2",
"cross-env": "^5.2.1",
"rimraf": "^2.7.1"
},
"dependencies": {
"idyll-components": "^3.12.1",
"react-tooltip": "^3.11.6"
}
}