-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
43
44
45
46
47
48
49
50
51
{
"name": "@redtea/ansumbl",
"version": "0.0.1-beta",
"description": "Ansumbl is [description]",
"main": "umd/index.js",
"publishConfig": {
"access": "public"
},
"module": "es/index.js",
"sideEffects": false,
"typings": "types/index.d.ts",
"files": [
"umd/",
"es/",
"esnext/",
"types/*"
],
"scripts": {
"build": "npm run clean && npm run ts && npm run rollup",
"ts": "tsc -d --declarationDir types/",
"rollup": "rollup -c",
"clean": "rm -rf esnext/ es/ umd/ types/",
"test": "BABEL_ENV=test mocha 'test/*.unit.js' --require=@babel/register --colors"
},
"author": "Kirill Horoshilov <mr.hokid@gmail.com>",
"license": "ISC",
"homepage": "[url]",
"repository": {
"type": "git",
"url": "[url]"
},
"bugs": {
"url": "[url]"
},
"keywords": [],
"browserslist": [
"> 1%",
"not ie <= 10"
],
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@types/node": "^9.6.7",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-uglify": "^3.0.0",
"typescript": "^3.0.3"
}
}