-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.47 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": "cssobj-core",
"version": "1.1.9",
"description": "Generate Virtual CSS middle format, support for all cssobj functions and plugins.",
"keywords": [
"cssom",
"virtual",
"css",
"cssobj",
"css in js"
],
"main": "dist/cssobj-core.cjs.js",
"browser": "dist/cssobj-core.umd.js",
"module": "dist/cssobj-core.es.js",
"files": [
"dist",
"docs",
"*.md",
"*.ts",
"*.json"
],
"scripts": {
"pretest": "rollup -c",
"test": "istanbul cover _mocha",
"report": "cd dist && gzip < cssobj-core.min.js > cssobj-core.min.gz && ls -lh && rm -f *.gz",
"build": "git rev-parse HEAD > .commithash && rollup -c && uglifyjs dist/cssobj-core.iife.js -cm -o dist/cssobj-core.min.js",
"make": "gulp bump && npm run build",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssobj/cssobj-core.git"
},
"bugs": {
"url": "https://github.com/cssobj/cssobj-core/issues"
},
"homepage": "https://github.com/cssobj/cssobj-core#readme",
"author": "James Yang <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "*",
"coveralls": "*",
"gulp": "*",
"gulp-bump": "*",
"mocha": "*",
"mocha-lcov-reporter": "*",
"rollup": "*",
"rollup-plugin-replace": "^1.1.1"
},
"dependencies": {}
}