forked from dividab/abstract-visuals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 993 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
{
"name": "abstract-image",
"version": "2.2.5",
"description": "Dynamically create images using code or JSX and render to any format",
"repository": "https://github.com/dividab/abstract-visuals/tree/master/packages/abstract-image",
"main": "lib-cjs/index.js",
"module": "lib-esm/index.js",
"types": "lib-cjs/index",
"license": "MIT",
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.4.2"
},
"devDependencies": {
"@types/react": "^15.0.34",
"@types/react-dom": "^15.5.1"
},
"scripts": {
"start": "yarn run storybook",
"build": "yarn build:clean && yarn build:cjs && yarn build:esm",
"build:clean": "rm -rf ./lib-cjs ./lib-esm",
"build:cjs": "tsc",
"build:esm": "tsc --module es2015 --outDir ./lib-esm",
"test": "rm -rf test/lib && mocha --colors",
"test:build": "cd test && tsc",
"tsc:stories": "tsc -p stories --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
}
}