-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.12 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
{
"name": "cssobj-mithril",
"version": "2.1.0",
"description": "Apply cssobj local class names into mithril.",
"main": "dist/cssobj-mithril.cjs.js",
"jsnext:main": "dist/cssobj-mithril.es.js",
"scripts": {
"pretest": "npm run build",
"lint": "standard ./lib",
"test": "cd test && mocha",
"report": "cd dist && gzip < cssobj-mithril.min.js > cssobj-mithril.min.gz && ls -lh && rm -f *.gz",
"build": "rollup -c && uglifyjs dist/cssobj-mithril.iife.js -cm -o dist/cssobj-mithril.min.js",
"make": "gulp bump && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssobj/cssobj-mithril.git"
},
"bugs": {
"url": "https://github.com/cssobj/cssobj-mithril/issues"
},
"homepage": "https://github.com/cssobj/cssobj-mithril#readme",
"author": "James Yang <jamesyang999@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"cssobj-core": "^0.4.8",
"cssobj-plugin-localize": "^2.0.0",
"mithril": "^0.2.5",
"mithril-node-render": "^0.5.0",
"mocha": "^3.0.2",
"rollup-plugin-buble": "^0.19.2"
}
}