forked from derekpitt/caching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 971 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
{
"name": "@learningmachine/caching",
"version": "0.1.6",
"description": "",
"main": "dist/index-cjs.js",
"module": "dist/index.js",
"typings": "./dist/caching.d.ts",
"scripts": {
"build": "rm -Rf build-temp && ./node_modules/.bin/tsc --module commonjs --target es6 --outDir build-temp -d && ./node_modules/.bin/dts-bundle --name caching --main build-temp/index.d.ts && ./node_modules/.bin/rollup -c && ./node_modules/.bin/rollup -c --format cjs -o dist/index-cjs.js && cp build-temp/caching.d.ts dist/"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"del": "^2.2.1",
"dts-bundle": "^0.7.2",
"dts-generator": "^2.0.0",
"resolve": "^1.3.3",
"rollup": "^0.41.5",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-typescript2": "^0.2.1",
"tslib": "^1.6.0",
"typescript": "^2.0.9"
}
}