-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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": "freiform",
"version": "0.0.1",
"description": "",
"main": "freiform.js",
"scripts": {
"test": "karma start",
"lint": "eslint freiform.js test",
"prebuild": "rm -f $npm_package_config_build_dir/freiform.js && mkdir -p $npm_package_config_build_dir",
"build": "rollup -c rollup.config.js --output $npm_package_config_build_dir/freiform.js"
},
"config": {
"build": {
"dir": "dist"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mechanoid/freiform.git"
},
"author": "Falk Hoppe <falkhoppe81@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mechanoid/freiform/issues"
},
"homepage": "https://github.com/mechanoid/freiform#readme",
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.17.1",
"karma": "^1.5.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-qunit": "^1.2.1",
"karma-rollup-preprocessor": "^3.0.3",
"karma-sauce-launcher": "^1.1.0",
"qunitjs": "^2.1.1",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"sinon": "^1.17.7",
"standard": "^9.0.0"
}
}