-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "precalc",
"version": "1.0.2",
"license": "Apache-2.0",
"description": "Simplify CSS equations with mixed units and wrap them in calc.",
"author": {
"name": "Matthew Armstrong",
"email": "raingerber2@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ViacomInc/precalc.git"
},
"main": "dist/precalc.js",
"module": "dist/precalc.esm.js",
"browser": "dist/precalc.umd.js",
"dependencies": {},
"devDependencies": {
"jest": "^21.2.0",
"rollup": "^0.50.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-multi-entry": "^2.0.1",
"standard": "latest"
},
"scripts": {
"prepublishOnly": "npm test",
"test": "standard 'src/**/*.js' && rollup -c --environment TEST_BUILD && jest; rm test/precalc-test.js",
"build": "rollup -c"
},
"files": [
"dist"
],
"keywords": [
"css",
"calc",
"calculation",
"preprocess",
"preprocessor"
],
"jest": {
"collectCoverage": true,
"mapCoverage": true
}
}