-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.65 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
{
"author": "Christopher Wallis <[email protected]> (http://notoriousb1t.com)",
"bugs": {
"url": "https://github.com/just-animate/just-curves/issues"
},
"description": "A library of reusuable easing functions",
"devDependencies": {
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.29",
"del-cli": "^1.1.0",
"mocha": "^6.2.0",
"rollup": "^0.50.0",
"rollup-plugin-typescript": "^0.8.1",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"uglify-js": "^3.1.1"
},
"jsnext:main": "./lib.es2015/main.js",
"homepage": "https://github.com/just-animate/just-curves#readme",
"license": "MIT",
"main": "./lib/main.js",
"module": "./lib.es2015/main.js",
"name": "just-curves",
"repository": {
"type": "git",
"url": "https://github.com/just-animate/just-curves"
},
"types": "./types/main",
"typings": "./types/main",
"typeRoots": [
"node_modules/@types"
],
"scripts": {
"build": "npm run build:node && npm run build:es2015 && npm run build:cdn && npm run compress:cdn",
"build:node": "tsc -p tsconfig.node.json",
"build:es2015": "tsc -p tsconfig.es2015.json",
"build:cdn": "rollup -c ./config/rollup.cdn.js",
"compress:cdn": "uglifyjs --config-file ./config/compress.json -o dist/just-curves.min.js dist/just-curves.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.2.0"
}