-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
42 lines (42 loc) · 1.53 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
{
"name": "anix",
"version": "1.3.7",
"license": "MIT",
"keywords": [
"motion",
"animation",
"animate"
],
"main": "dist/anix/index.js",
"types": "dist/anix/index.d.ts",
"homepage": "https://github.com/aliaszz/AniX",
"scripts": {
"tslint": "tslint -c tslint.json 'src/*.ts'",
"compile_anix": "tsc ./src/index.ts -m commonjs --outDir ./dist/anix --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom --sourceMap --target ES5 -d --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node",
"compile_jq": "webpack --config ./scripts/.jq.webpack.js --progress --colors",
"compile_umd": "webpack --config ./scripts/.umd.webpack.js --progress --colors",
"clean_anix": "shx rm -rf ./dist/anix",
"clean_jq": "shx rm -rf ./dist/jq",
"clean_umd": "shx rm -rf ./dist/umd",
"travis": "npm run tslint",
"anix": "npm-run-all clean_anix compile_anix",
"umd": "npm-run-all clean_umd compile_umd",
"jq": "npm-run-all clean_jq compile_jq",
"banner": "node ./scripts/.banner.js",
"package": "node ./scripts/.makepackage.js",
"pub_anix": "cd ./dist/anix && npm publish",
"all": "npm-run-all anix jq umd package banner"
},
"dependencies": {},
"devDependencies": {
"@types/node": "~7.0.18",
"codelyzer": "~5.2.0",
"npm-run-all": "^4.0.2",
"prepend-file": "~1.3.1",
"shx": "^0.2.2",
"ts-loader": "~2.0.3",
"tslint": "~5.2.0",
"typescript": "~2.3.2",
"webpack": "~2.5.1"
}
}