-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cycle-fela",
"version": "0.2.1",
"description": "Use fela in cycle js",
"main": "lib/index.js",
"jsnext:main": "dist/cycle-fela.es.js",
"module": "dist/cycle-fela.es.js",
"author": "wcastand <wcastand@gmail.com> (https://github.com/wcastand)",
"license": "MIT",
"keywords": [
"fela",
"cycle",
"cycle-js",
"fela-cycle",
"css-in-js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wcastand/cycle-fela.git"
},
"scripts": {
"build": "yarn run build:lib && yarn run build:dist",
"prebuild:lib": "rm -rf lib/*",
"build:lib": "babel --out-dir lib src --ignore test.js",
"prebuild:umd": "rm -rf dist/*",
"prebuild:dist": "rm -rf dist/*",
"build:dist": "rollup -c && rollup -c --environment PRODUCTION",
"build:watch": "npm-watch",
"test": "jest src",
"test:watch": "jest src --watch",
"format": "prettier --no-semi --single-quote --trailing-comma all --tab-width 2 --bracket-spacing true --print-width 100 --write 'src/**/*.js'",
"prepublish": "yarn run build",
"link": "yarn run build && yarn link"
},
"devDependencies": {
"@cycle/run": "^3.1.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"jest": "^20.0.3",
"npm-watch": "^0.1.9",
"prettier": "^1.3.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"xstream": "^10.8.0"
},
"dependencies": {
"@cycle/dom": "^17.3.0",
"fela": "^5.0.0",
"fela-dom": "^5.0.0",
"snabbdom": "^0.6.9"
},
"watch": {
"build:lib": "src/**/*.js"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}