-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.68 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
{
"author": "Christopher Wallis <christopher.j.wallis@gmail.com> (http://notoriousb1t.com)",
"bugs": {
"url": "https://github.com/just-animate/just-mix/issues"
},
"description": "Mix and interpolate colors, css units, and more!",
"devDependencies": {
"@types/jsdom": "^2.0.29",
"@types/mocha": "^2.2.34",
"@types/node": "^6.0.53",
"del-cli": "^0.2.1",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"mocha-jsdom": "^1.1.0",
"rollup": "^0.38.0",
"rollup-plugin-typescript": "^0.8.1",
"ts-node": "^1.7.2",
"tslint": "^4.2.0",
"typescript": "^2.1.4",
"uglify": "^0.1.5"
},
"homepage": "https://github.com/just-animate/just-mix#readme",
"jsnext:main": "./lib.es2015/main.js",
"license": "MIT",
"main": "./lib/main.js",
"module": "./lib.es2015/main.js",
"name": "just-mix",
"repository": {
"type": "git",
"url": "https://github.com/just-animate/just-mix"
},
"typings": "./src/main",
"typeRoots": [
"node_modules/@types"
],
"scripts": {
"build": "npm run build:common && npm run build:es2015 && npm run build:cdn && npm run compress:cdn",
"build:common": "tsc -p tsconfig.node.json",
"build:es2015": "tsc -p tsconfig.es2015.json",
"build:cdn": "rollup -c rollup.cdn.js",
"compress:cdn": "uglifyjs --c --lift-vars --m --screw-ie8 --o dist/just-mix.min.js dist/just-mix.js",
"clean": "node_modules/.bin/del-cli -f dist lib lib.es2015",
"postversion": "git push --follow-tags && npm publish",
"preversion": "npm run rebuild",
"rebuild": "npm run clean && npm run build",
"test": "node_modules/.bin/mocha --require ts-node/register --reporter spec ./tests/**/**.ts"
},
"version": "0.3.3"
}