-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
49 lines (49 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
{
"name": "rxcss",
"version": "0.10.0",
"description": "RxJS and CSS",
"main": "lib/index.js",
"scripts": {
"start": "npm run build",
"build": "npm run build:umd && npm run build:lib",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack -p src/index.ts dist/rxcss.min.js --config webpack.config.prod.js",
"build:watch": "webpack src/index.ts dist/rxcss.min.js --config webpack.config.prod.js -w",
"prepublish": "npm run build",
"test": "mocha --require babel-core/register --require ./spec/helpers/setup-jsdom.js ./spec/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkpiano/RxCSS.git"
},
"keywords": [
"RxJS",
"CSS"
],
"author": "David Khourshid",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkpiano/RxCSS/issues"
},
"homepage": "https://github.com/davidkpiano/RxCSS#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "~6.18.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "~3.5.0",
"html-webpack-plugin": "^2.17.0",
"jsdom": "~9.8.3",
"mocha": "~3.1.2",
"ts-loader": "^2.0.3",
"typescript": "^2.3.2",
"webpack": "^1.13.1"
},
"dependencies": {
"rxjs": "~5.0.1"
},
"peerDependencies": {
"rxjs": "~5.0.0-rc.4"
}
}