-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "athletic",
"version": "3.0.2",
"description": "A lightweight library for declarative applications",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:Antontelesh/athletic.git"
},
"scripts": {
"clean:test": "rm -rf ./build_test",
"clean:typescript": "rm -rf ./dist",
"test:prepare": "npm run clean:test && npm run compile:test",
"test:unit": "node ./build_test/test/index.js",
"pretest": "npm run test:prepare",
"test": "nyc node ./build_test/test/index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"compile:test": "tsc -p ./test --outDir ./build_test",
"compile:typescript": "tsc -p ./src --outDir ./dist",
"compile:rollup": "rollup -c",
"compile": "npm run clean:typescript && npm run compile:typescript && npm run compile:rollup"
},
"keywords": [
"library",
"framework",
"declarative",
"component"
],
"author": "Anton Telesh <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": "^4.6.1"
},
"devDependencies": {
"babel-preset-es2015-rollup": "^1.1.1",
"coveralls": "^2.11.8",
"nyc": "^6.1.1",
"rollup": "^0.25.8",
"rollup-plugin-babel": "^2.4.0",
"tape": "^4.5.1",
"typescript": "^1.8.9"
},
"typings": "dist/index.d.ts",
"nyc": {
"include": [
"build_test/src/**/*.js"
]
}
}