-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.68 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.68 KB
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
{
"name": "j2c-math",
"version": "1.0.0",
"description": "Manipulates CSS values (colors and measures).",
"main": "dist/j2c-math.commonjs.js",
"esnext:main": "j2c-math.js",
"scripts": {
"all": "npm run build && npm run lint && npm run nyan",
"build": "npm run -s clean && npm run rollup && npm run uglify && node scripts/filesize.js",
"rollup": "node scripts/build.js",
"uglify": "uglifyjs dist/j2c-math.commonjs.js -c -m --comments > dist/j2c-math.commonjs.min.js && uglifyjs dist/j2c-math.amd.js -c -m --comments > dist/j2c-math.amd.min.js && uglifyjs dist/j2c-math.global.js -c -m --comments > dist/j2c-math.global.min.js",
"clean": "rm -f dist/*.js",
"lint": " echo \"linting...\" && eslint --fix j2c-math.js test/test.js scripts/*.js",
"nyan": "mocha --ui qunit --reporter nyan",
"test": "mocha --ui qunit",
"cover": "(mocha --ui qunit --require blanket --reporter mocha-lcov-reporter | coveralls) || npm run test",
"prepublish": "(in-publish && npm run -s all && git push --follow-tags) || not-in-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/j2css/j2c-math.git"
},
"keywords": [
"CSS"
],
"author": "Pierre-Yves Gérardy",
"license": "MIT",
"bugs": {
"url": "https://github.com/j2css/j2c-math/issues"
},
"config": {
"blanket": {
"pattern": "//j2c-math\\.commonjs/"
}
},
"homepage": "http://j2c.py.gy",
"devDependencies": {
"blanket": "^1.1.7",
"coveralls": "^2.11.2",
"eslint": "2.0.0-alpha-1",
"expect.js": "0.3.1",
"in-publish": "^2.0.0",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"rollup": "^0.21.2",
"uglify-js": "^2.6.1"
}
}