-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "evolui",
"version": "1.6.9",
"description": "Observable powered templates for asynchronous UIs",
"main": "lib/evolui.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && BABEL_ENV=production rollup --config rollup.config.js",
"prepare": "npm run clean && npm run build",
"test": "jest"
},
"repository": {
"url": "https://github.com/gvergnaud/evolui.git",
"type": "git"
},
"author": "Gabriel Vergnaud <github.com/gvergnaud>",
"license": "MIT",
"files": [
"lib",
"extra.js"
],
"dependencies": {
"rx-ease": "^0.2.0",
"vdom-tag": "^0.1.1"
},
"peerDependencies": {
"rxjs": "^6.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2017-object-entries": "0.0.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.2",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.2",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"rollup": "^0.51.7",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rxjs": "^6.3.1"
}
}